/// import { Types } from '@myfan/commons'; interface ICountrySelect { defaultValue: string; placeholder: string; required?: boolean; onSelect: () => void; errors: { country: any; }; intl: Types.IntlShape; } declare const CountrySelect: ({ defaultValue, placeholder, required, onSelect, errors, intl }: ICountrySelect) => JSX.Element; export default CountrySelect;