import * as React from "react"; export interface ISelectInput { focus: () => void; blur: () => void; } export interface ISelectInputOption { id: number | string; name: string; } export interface ISelectInputProps extends React.SelectHTMLAttributes { options: ISelectInputOption[]; onOptionChange?: (selected: ISelectInputOption) => void; optionLabel?: string; enableOptionLabel?: boolean; } export declare const SelectInput: React.ForwardRefExoticComponent>;