///
import { SelectProps } from './Select';
import { FieldProps } from '../utils/withField';
export declare function SearchSelect({ value: currentValue, options, onChange, placeholder, ...props }: SelectProps): JSX.Element;
export declare const SearchSelectField: (props: FieldProps & SelectProps) => import("react").ReactElement | null;