import { ContentNode } from '../../types'; import React from 'react'; import type { PolymorphicProps, PolymorphicComponent } from '../../utils/polymorphicComponent'; interface ListboxGroupProps extends PolymorphicProps> { groupLabelProps?: React.HTMLAttributes; label: ContentNode; } declare const ListboxGroup: PolymorphicComponent; export default ListboxGroup;