import { type Config, type PostPasswordReset, type PostPasswordResetData } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for resetting and setting a new password. * * @param postPasswordReset - Post password reset client. * * @returns Thunk factory. */ declare const resetPasswordFactory: (postPasswordReset: PostPasswordReset) => (data: PostPasswordResetData, config?: Config) => (dispatch: Dispatch) => Promise>; export default resetPasswordFactory;