how can i use infered type as the return type of validateEnv function here?
export const validateEnv = () => {
return cleanEnv(process.env, {
DISCORD_BOT_TOKEN: str(),
DISCORD_BOT_ACCESS_KEY: minLengthString(32)(),
// NODE_ENV: str({ choices: ['development', 'test', 'production', 'staging'] }),
});
}