import { type Brand, type Config, type GetBrand } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchBrandAction } from '../../types/index.js'; /** * Creates a thunk factory configured with the specified client to fetch a brand * with given brand id. * * @param getBrand - Get brand client. * * @returns Thunk factory. */ declare const fetchBrandFactory: (getBrand: GetBrand) => (brandId: Brand['id'], config?: Config) => (dispatch: Dispatch) => Promise; export default fetchBrandFactory;