import { type Config, type GetUserAttribute, type UserAttribute } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Get a specific attribute from user. * * @param getUserAttribute - Get a specific attribute client. * * @returns Thunk factory. */ declare const fetchUserAttributeFactory: (getUserAttribute: GetUserAttribute) => (id: number, attributeId: string, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchUserAttributeFactory;