import { type Config, type PutUser, type PutUserData, type User } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { UpdateUserAction } from '../../types/index.js'; /** * Updates the user data. * * @param putUser - Put user client. * * @returns Thunk factory. */ declare const setUserFactory: (putUser: PutUser) => (id: User['id'], data: PutUserData, config?: Config) => (dispatch: Dispatch) => Promise; export default setUserFactory;