UNPKG

@project44-manifest/react

Version:

Manifest Design System react components

14 lines 713 B
import type { Node, SectionProps } from '@react-types/shared'; import { As, Options, Props } from '../../system'; import type { StyleProps } from '../../types'; export declare type ListBoxSectionElement = 'div'; export interface ListBoxSectionOptions<T extends As = ListBoxSectionElement> extends Options<T>, StyleProps { /** * Item object in the collection. */ item: Node<object>; } export declare type ListBoxSectionProps<T extends As = ListBoxSectionElement> = Omit<Props<ListBoxSectionOptions<T>>, 'item'> & SectionProps<object>; /** @private */ export declare const ListBoxSection: import("../../system").Component<ListBoxSectionOptions<"div">>; //# sourceMappingURL=ListBoxSection.d.ts.map