import { type Config, type PostPasswordRecover, type PostPasswordRecoverData } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for sending an email for the user to reset the password. * * @param postPasswordRecover - Post password recover client. * * @returns Thunk factory. */ declare const recoverPasswordFactory: (postPasswordRecover: PostPasswordRecover) => (data: PostPasswordRecoverData, config?: Config) => (dispatch: Dispatch) => Promise>; export default recoverPasswordFactory;