import * as React from 'react'; export interface ComboboxGroupContext { labelId: string | undefined; setLabelId: React.Dispatch>; /** * Optional list of items that belong to this group. Used by nested * collections to render group-specific items. */ items?: readonly any[]; } export declare const ComboboxGroupContext: React.Context; export declare function useComboboxGroupContext(): ComboboxGroupContext;