import { type Config, type PutUserAttribute, type User, type UserAttributeData } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Updates a specific user attribute. * * @param putUserAttribute - Update a specific user attribute. * * @returns Thunk factory. */ declare const setUserAttributeFactory: (putUserAttribute: PutUserAttribute) => (userId: User['id'], attributeId: string, data: UserAttributeData, config?: Config) => (dispatch: Dispatch) => Promise; export default setUserAttributeFactory;