///
export declare type TBaseProps = {
className?: string;
disabled?: boolean;
style?: object;
visible?: boolean;
};
export declare type TBaseInputProps = {
autoFocus?: boolean;
/** HTML attribute: autocomplete */
autocomplete?: string;
id?: string;
name?: string;
onBlur?(event: Event): void;
onChange?(newValue: TValue, event?: Event): void;
onFocus?(event: Event): void;
placeholder?: string;
readonly?: boolean;
value?: TValue;
};
export declare type TOption = {
className?: string;
disabled?: boolean;
id: string | number;
label: string | JSX.Element;
tooltip?: string;
visible?: boolean;
value: TValue;
};