import { type Config, type GetUserAttributes, type GetUserAttributesQuery, type UserAttribute } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Get user attributes from user. * * @param getUserAttributes - Get user attributes client. * * @returns Thunk factory. */ declare const fetchUserAttributesFactory: (getUserAttributes: GetUserAttributes) => (id: number, query?: GetUserAttributesQuery, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchUserAttributesFactory;