import { type Config, type DeleteUserAttribute, type User } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Deletes a specific user attribute. * * @param deleteUserAttribute - Delete a specific user attribute. * * @returns Thunk factory. */ declare const removeUserAttributeFactory: (deleteUserAttribute: DeleteUserAttribute) => (userId: User['id'], attributeId: string, config?: Config) => (dispatch: Dispatch) => Promise; export default removeUserAttributeFactory;