import type { UseCountryAddressSchemas } from './types/useCountryAddressSchemas.types.js'; export declare function useCountryAddressSchemas(countryCode: string, options?: UseCountryAddressSchemas): { error: import("@farfetch/blackout-redux").Nullable; isLoading: boolean; isFetched: boolean; data: { countryAddressSchemas: import("@farfetch/blackout-client").CountryAddressSchema[] | undefined; }; actions: { fetch: (isoCode: string, config?: import("@farfetch/blackout-client").Config | undefined) => Promise; }; }; export default useCountryAddressSchemas;