import { type Config, type PostPasswordChange, type PostPasswordChangeData } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for changing a user password. * * @param postPasswordChange - Post password change client. * * @returns Thunk factory. */ declare const changePasswordFactory: (postPasswordChange: PostPasswordChange) => (data: PostPasswordChangeData, config?: Config) => (dispatch: Dispatch) => Promise>; export default changePasswordFactory;