declare global {
    namespace NodeJS {
        interface ProcessEnv {
            NODE_ENV: string;
            HOSTNAME: string;
            ADAPTER_IP: string;
            PORT: number;
            DATABASE_URL: string;
            SESSION_SECRET: string;
            CSRF_SECRET: string;
            COOKIE_SECRET: string;
            JWT_ACCESS_TOKEN_SECRET: string;
            JWT_REFRESH_TOKEN_SECRET: string;
            HASHID_SALT: string;
            CLIENT_ORIGIN: string;
            SMTP_FROM: string;
            SMTP_HOST: string;
            SMTP_PORT: string;
            SMTP_USER: string;
            SMTP_PASS: string;
            UPLOAD_DIRECTORY: string;
            NUXT_API_LOCATION: string;
            NUXT_CLIENT_LOCATION: string;
        }
    }
}
export {};
