import { ComponentPropsWithoutRef } from 'react'; /** * Props for the ListboxOptionGroup component * @extends ComponentPropsWithoutRef<"div"> */ export type ListboxOptionGroupProps = ComponentPropsWithoutRef<"div"> & { /** Whether the group is disabled */ disabled?: boolean; /** The label for the option group */ label: string; }; /** * ListboxOptionGroup component for grouping related options within a listbox. * * Features: * - Groups related options with a descriptive label * - Maintains proper ARIA structure for accessibility * - Supports keyboard navigation within groups * - Visual separation of option categories * * @example * * Apple * Banana * */ export declare const ListboxOptionGroup: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { /** Whether the group is disabled */ disabled?: boolean; /** The label for the option group */ label: string; } & import('react').RefAttributes>;