import * as React from 'react'; export interface IComboboxProps { onChange: (value: string) => void; options: IComboboxItemProps[]; id?: string; className?: string; name?: string; value?: string; hasError?: boolean; placeholder?: string; dropdownAriaLabel?: string; clearAriaLabel?: string; noSuggestionLabel?: string; } export interface IComboboxItemProps { text: string; key: string; } export declare const Combobox: React.FC> & React.HTMLProps;