declare global {
    namespace NodeJS {
        interface ProcessEnv {
            api_key: string;
            passphrase: string;
            secret_key: string;
            ENV: 'test' | 'dev' | 'prod';
        }
    }
}
export {};
