import { ListboxGroupProps } from './listbox-group.types'; /** * @internal * The `ListboxGroup` component is used to display a list of grouped items aligned with design system styles. * Use the `ListboxItem` component to define the items of the list and `ListboxGroupLabel` to define the group label. * * ### Usage * * import { Listbox, ListboxItem, ListboxGroup, ListboxGroupLabel } from '@bloomreach/react-banana-ui'; * * export default function MyList() { * return ( * * * Group one * Item 1 * Item 2 * Item 3 * * * Group two * Item 1 * Item 2 * Item 3 * * * ); * } */ declare const ListboxGroup: import('react').ForwardRefExoticComponent>; export default ListboxGroup;