import { type Config, type GetSizeScale, type SizeScale } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchSizeScaleAction } from '../../types/index.js'; /** * Creates a thunk factory configured with the specified client to fetch a specific * size scale for a given size scale id. * * @param getSizeScale - Get size scale client. * * @returns Thunk factory. */ declare const fetchSizeScaleFactory: (getSizeScale: GetSizeScale) => (sizeScaleId: number, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchSizeScaleFactory;