import { JSX, Ref } from 'react';
import { ListBoxSectionProps } from 'react-aria-components/ListBox';
export declare const listViewSection: import('tailwind-variants').TVReturnType<{} | {} | {}, undefined, "", {} | {}, undefined, import('tailwind-variants').TVReturnType<unknown, undefined, "", unknown, unknown, undefined>>;
export type ListViewSectionProps<TItem extends object> = ListBoxSectionProps<TItem> & {
    title: string;
};
type ListViewSectionComponentType = {
    <TItem extends object>(props: ListViewSectionProps<TItem> & {
        ref?: Ref<HTMLElement>;
    }): JSX.Element;
    displayName: string;
};
declare const ListViewSection: ListViewSectionComponentType;
export { ListViewSection };
