import { type Config, type PutUserPreferences, type PutUserPreferencesData, type User } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Updates the user preferences. * * @param putUserPreferences - Update preferences client. * * @returns Thunk factory. */ declare const setUserPreferencesFactory: (putUserPreferences: PutUserPreferences) => (userId: User['id'], data: PutUserPreferencesData[], config?: Config) => (dispatch: Dispatch) => Promise>; export default setUserPreferencesFactory;