interface ICountrySelect { country: string; handleCountry: (country: string) => void; } declare const CountrySelect: ({ country, handleCountry }: ICountrySelect) => import("react/jsx-runtime").JSX.Element; export { CountrySelect }; export default CountrySelect;