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