export declare const emailConfig: () => {
    emailService: string;
    emailFrom: string;
    emailSubjects: {
        loginOtp: string;
    };
    aws: {
        sesRegion: string;
        sesAccessKey: string;
        sesSecretKey: string;
    };
    smtp: {
        host: string;
        auth: {
            user: string;
            pass: string;
        };
    };
    sendgrid: {
        apiKey: string;
    };
};
