import { type Config, type CountryAddressSchema, type GetCountryAddressSchemas } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchCountryAddressSchemasAction } from '../../types/index.js'; /** * Obtains the address schemas for a country specified with 'id'. * * @param getCountryAddressSchemas - Get country address schemas client. * * @returns Thunk factory. */ declare const fetchCountryAddressSchemasFactory: (getCountryAddressSchemas: GetCountryAddressSchemas) => (isoCode: string, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchCountryAddressSchemasFactory;