export declare const COMBOBOX_CONTEXT: unique symbol; export declare const COMBOBOX_CREATE_KEY = "__create__"; export interface ComboboxContext { getValue: () => string; getQuery: () => string; getHighlighted: () => string | null; select: (value: string) => void; highlight: (value: string) => void; register: (value: string, disabled: boolean, label?: string) => () => void; } export declare function setComboboxContext(ctx: ComboboxContext): ComboboxContext; export declare function getComboboxContext(): ComboboxContext | null;