export declare class otpUtilService {
    generateOtp(): {
        otp: string;
        otpExpiry: Date;
    };
    sendOtpMail(): void;
}
