import { ListboxGroupLabelProps } from './listbox-group-label.types'; /** * The `ListboxGroupLabel` component is used to display label inside list group. * * ### Usage * * ```tsx * import { Listbox, ListboxItem, ListboxGroup, ListboxGroupLabel } from '@bloomreach/react-banana-ui'; * * export default function MyGroupedList() { * return ( * * * Group one * Item 1 * Item 2 * Item 3 * * * Group two * Item 1 * Item 2 * Item 3 * * * ); * } * ``` */ declare const ListboxGroupLabel: import('react').ForwardRefExoticComponent>; export default ListboxGroupLabel;