import { FC } from 'react'; import { FilterFunction } from './AutocompleteSelect'; export interface Props { value: string; onChange: (value: string | undefined) => void; error?: string; placeholder?: string; disabled?: boolean; filter?: FilterFunction; } declare const CountryPicker: FC; export default CountryPicker;