import { CountryData } from 'react-international-phone'; import { CountryCode } from '../Flag'; interface GroupedCountries { [key: string]: { countryCode: CountryCode; name: string; }[]; } interface UseCountryGroupingProps { countries: CountryData[]; defaultValue?: CountryCode; locale?: string; } export declare function useCountryGrouping({ countries, defaultValue, locale, }: UseCountryGroupingProps): GroupedCountries; export {};