import { type Config, type GetProductAttributes, type Product, type ProductAttribute } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Creates a thunk factory configured with the specified client to fetch product * attributes for a given product id. * * @param getProductAttributes - Get product attributes client. * * @returns Thunk factory. */ declare const fetchProductAttributesFactory: (getProductAttributes: GetProductAttributes) => (productId: Product['result']['id'], config?: Config) => (dispatch: Dispatch) => Promise; export default fetchProductAttributesFactory;