import { User } from '../user/types'; /** * This function is for sending reset password email with validated token * * This flow, it will first check if email and URL environment variable has been set. * * Renders an email with provided from, to, subject, html template. */ export declare function sendResetPasswordEmail(user: User): Promise;