import { type Config, type PostUserAttribute, type User, type UserAttributeData } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for creating an user attribute. * * @param postUserAttribute - Post user attribute client. * * @returns Thunk factory. */ declare const createUserAttributesFactory: (postUserAttributes: PostUserAttribute) => (userId: User['id'], data: UserAttributeData, config?: Config) => (dispatch: Dispatch) => Promise; export default createUserAttributesFactory;