type Currency = { code: string; name: string; symbol: string; }; export interface ICountry { name: string; code: string; code2: string; callingCodes: Array; capital: string; region: string; citizen: string; flagUrl: string; currencies: Array; timezones: Array; latlng: Array; } interface Props { defaultCountry: string; onSelect: (country: ICountry) => void; } declare function ReactCountryDropdown({ defaultCountry, onSelect }: Props): import("react/jsx-runtime").JSX.Element; export default ReactCountryDropdown;