import { type Config, type GetCountryStates, type State } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchCountryStatesAction } from '../../types/index.js'; /** * Fetch all states from a specific country. * * @param getCountryStates - Get states client. * * @returns Thunk factory. */ declare const fetchCountryStatesFactory: (getCountryStates: GetCountryStates) => (countryCode: string, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchCountryStatesFactory;