interface IMyCombobox { label?: string; className?: string; busy?: boolean; readOnly?: boolean; autoFocus?: boolean; onSelect?: () => any; textField?: string; name: string; valueField?: string; filter?: string; placeholder?: string; data: object[]; label_space_xs?: number; } export declare const MyCombobox: (props: IMyCombobox) => JSX.Element; export {};