import type { Country } from '@farfetch/blackout-client'; import type { UseCountriesOptions } from './types/useCountries.types.js'; export declare function useCountries(options?: UseCountriesOptions): { error: import("@farfetch/blackout-client").BlackoutError | null; isLoading: boolean; isFetched: boolean; data: { countries: Record | undefined; countriesById: Record | undefined; }; actions: { fetch: (config?: import("@farfetch/blackout-client").Config | undefined) => Promise; }; }; export default useCountries;