export interface ComboboxItemInput { value: string; label: string; disabled: boolean; keywords: string[]; selected: boolean | undefined; highlighted: boolean | undefined; register: boolean; onclick?: () => void; } export declare function createComboboxItemController(getInput: () => ComboboxItemInput): { readonly matchesQuery: boolean; readonly isSelected: boolean; readonly isHighlighted: boolean; activate: () => void; highlight: () => void; };