import { type Config, type Configurations, type ConfigurationsQuery, type GetConfigurations } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchConfigurationsAction } from '../../types/index.js'; /** * Creates a thunk factory configured with the specified client to fetch all * configurations. * * @param getConfigurations - Get configurations client. * * @returns Thunk factory. */ declare const fetchConfigurationsFactory: (getConfigurations: GetConfigurations) => (query?: ConfigurationsQuery, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchConfigurationsFactory;