import * as _heroui_system from '@heroui/system'; import { Node } from '@react-types/shared'; import { ListState } from '@react-stately/list'; import { ListboxItemProps } from './listbox-item.js'; import { ListboxSectionBaseProps } from './base/listbox-section-base.js'; import 'react/jsx-runtime'; import './use-listbox-item.js'; import './base/listbox-item-base.js'; import '@heroui/theme'; import '@react-aria/listbox'; import '@heroui/aria-utils'; import 'react'; import 'tailwind-variants'; import '@heroui/divider'; interface ListboxSectionProps extends ListboxSectionBaseProps { item: Node; state: ListState; /** * The listbox items variant. */ variant?: ListboxItemProps["variant"]; /** * The listbox items color. */ color?: ListboxItemProps["color"]; /** * Whether to disable the items animation. * @default false */ disableAnimation?: boolean; } /** * @internal */ declare const ListboxSection: _heroui_system.InternalForwardRefRenderFunction<"li", ListboxSectionProps, never>; export { type ListboxSectionProps, ListboxSection as default };