import { ErrorUnion, OkUnion } from '../outputs'; /** * Requests to send a password recovery code to an email address that was previously * set up. Works only when the current authorization state is authorizationStateWaitPassword * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type RequestAuthenticationPasswordRecoveryMethod = (state?: Record) => Promise;