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<Props>;
export default CountryPicker;
