/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import type { JSX } from 'react';
import { groupedCountries } from './data/countries';
import { type SelectProps } from './types';
type Country = (typeof groupedCountries)[number]['options'][number];
export declare const CountrySelect: (props: SelectProps<Country>) => JSX.Element;
export {};
