///
import { ISelectProps } from '../../desktop/bundle';
import './index.css';
export declare type IItem = {
id: string;
avatar: string;
title: string;
subtitle: string;
disabled?: boolean;
};
declare type ISearchTextContextProps = {
searchText: string;
searchInProgress: boolean;
onChangeSearchText: (value: string) => void;
};
declare type IComboBoxProps = Omit & ISearchTextContextProps & {
value: IItem;
options: IItem[];
onChange: (value?: IItem) => void;
};
export declare const ComboBox: ({ searchText, searchInProgress, onChangeSearchText, value, options: items, onChange, ...props }: IComboBoxProps) => JSX.Element;
export {};