import type { Country } from '../@types'; type ErrorType = { message: string; code: string; }; export declare function useFetchCountryList(): { setError: (error: ErrorType | null) => void; setLoading: (loading: boolean) => void; data: Country[] | null; error: ErrorType | null; loading: boolean; }; export {};