import type { UseCountryStatesOptions } from './types/useCountryStates.types.js'; export declare function useCountryStates(countryCode: string, options?: UseCountryStatesOptions): { error: import("@farfetch/blackout-client").BlackoutError | null; isLoading: boolean; isFetched: boolean; data: { countryStates: import("@farfetch/blackout-redux").StateEntity[] | undefined; }; actions: { fetch: (countryCode: string, config?: import("@farfetch/blackout-client").Config | undefined) => Promise; }; }; export default useCountryStates;