import { type Config, type Country, type GetCountries } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchCountriesAction } from '../../types/index.js'; /** * Fetch all countries. * * @param getCountries - Get countries client. * * @returns Thunk factory. */ declare const fetchCountriesFactory: (getCountries: GetCountries) => (config?: Config) => (dispatch: Dispatch) => Promise; export default fetchCountriesFactory;