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