import { IComboBox } from "ave-ui"; import { IComponentProps } from "./common"; export interface IComboBoxComponentProps extends IComponentProps { options: IComboBoxOption[]; defaultSelectedKey?: string; onChange?: Parameters[0]; } export interface IComboBoxOption { key: string; text: string; } export declare const ComboBox: import("./common").ReactAveTag;