import { type Config, type Country, type GetCountry } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchCountryAction } from '../../types/index.js'; /** * Fetch a specific country, by its country code. * * @param getCountry - Get country client. * * @returns Thunk factory. */ declare const fetchCountryFactory: (getCountry: GetCountry) => (countryCode: string, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchCountryFactory;