import { default as React } from 'react'; import { Country } from '../country'; type Props = { options: Country[]; value: Country; isDisabled?: boolean; onSelect: (selectedCountry: Country) => void; }; export declare const CountrySelect: ({ options, value, isDisabled, onSelect, }: Props) => React.JSX.Element; export {}; //# sourceMappingURL=CountrySelect.d.ts.map