import { type Config, type Currency, type GetCountryCurrencies } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchCountryCurrenciesAction } from '../../types/index.js'; /** * Fetch all currencies from a specific country. * * @param getCountryCurrencies - Get currencies client. * * @returns Thunk factory. */ declare const fetchCountryCurrenciesFactory: (getCountryCurrencies: GetCountryCurrencies) => (countryCode: string, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchCountryCurrenciesFactory;