interface EmailParams {
    to: string;
    subject: string;
    resetURL: string;
}

declare function sendResetPasswordEmail({ to, subject, resetURL }: EmailParams): Promise<void>;

export { sendResetPasswordEmail };
