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