import * as React from 'react'; import { Props } from 'react-select/lib/Select'; export interface ISelectOption { value: string; label: string; disabled?: boolean; } export interface IStyledSelectProps extends Props { id: string; error?: boolean; touched?: boolean; options: ISelectOption[]; placeholder?: string; } export interface ISelectProps extends Omit { onChange: (value: string) => void; value: string; searchableLength?: number; } export declare const Select: (props: ISelectProps) => React.JSX.Element; //# sourceMappingURL=Select.d.ts.map