import { ErrorUnion, RecoveryEmailAddressUnion } from '../outputs'; /** * Returns a 2-step verification recovery email address that was previously set up. * This method can be used to verify a password provided by the user * @param {Object} params * @param {string} [params.password] - The password for the current user * @param {Object} state * @returns {RecoveryEmailAddressUnion | ErrorUnion} */ export declare type GetRecoveryEmailAddressMethod = (params: GetRecoveryEmailAddressParams, state?: Record) => Promise; export interface GetRecoveryEmailAddressParams { /** The password for the current user */ password?: string; }