import * as React from 'react'; import type { ComboboxItem } from '../store/ComboboxStore'; export interface ComboboxGroupContext { /** * The id of this group's `Combobox.GroupLabel`, which labels the group. */ labelId: string | undefined; /** * The group's items, already filtered. `Combobox.Collection` renders these * instead of the whole list when it is inside a group. */ items: ComboboxItem[] | undefined; } export declare const ComboboxGroupContext: React.Context; export declare function useComboboxGroupContext(): ComboboxGroupContext; /** * The optional form, for `Combobox.Collection` — it falls back to the whole * filtered list when it is not inside a group. */ export declare function useOptionalComboboxGroupContext(): ComboboxGroupContext | undefined; //# sourceMappingURL=ComboboxGroupContext.d.ts.map