import { Direction } from '../../types/global'; import { CountryCode } from '../Flag'; interface GroupedCountries { [key: string]: { countryCode: CountryCode; name: string; }[]; } interface GroupedCountryListProps { groupedCountries: GroupedCountries; value: CountryCode; onSelect: (countryCode: CountryCode) => void; dir?: Direction; locale?: string; } export declare function GroupedCountryList({ groupedCountries, onSelect, value, dir, locale, }: GroupedCountryListProps): import("react/jsx-runtime").JSX.Element; export {};