import * as React from 'react'; import { BaseUIComponentProps } from "../../internals/types.mjs"; /** * Groups related items with the corresponding label. * Renders a `
` element. * * Documentation: [Base UI Combobox](https://base-ui.com/react/components/combobox) */ export declare const ComboboxGroup: React.ForwardRefExoticComponent & React.RefAttributes>; export interface ComboboxGroupState {} export interface ComboboxGroupProps extends BaseUIComponentProps<'div', ComboboxGroupState> { /** * Items to be rendered within this group. * When provided, child `Collection` components will use these items. */ items?: readonly any[] | undefined; } export declare namespace ComboboxGroup { type State = ComboboxGroupState; type Props = ComboboxGroupProps; }