///
import { BaseInput, IBaseInputProps, IBaseInputState } from './base-input';
export interface ISelectInputOption {
value: string;
label: string;
}
export interface ISelectInputProps extends IBaseInputProps {
options: Array;
canHaveUnselected?: boolean;
unselectedText?: string;
}
export declare class SelectInput extends BaseInput {
protected type: string;
constructor(props: ISelectInputProps);
render(): JSX.Element;
private mapOptionsToElements(options);
private _onChange(e);
}