import type { ColumnPinningPosition } from '@tanstack/react-table'; import { type JSX } from 'react'; interface DataTableColumnsSectionHeaderProps { /** * The section the header labels. */ position: ColumnPinningPosition; /** * The virtual index for grid row positioning. */ virtualIndex: number; /** * Callback to measure the element for virtualization. */ measureElement: (element: Element | null) => void; } /** * Section header row in the column settings list, labeling the pinned/unpinned * groups of columns. * @internal */ export declare function DataTableColumnsSectionHeader(props: Readonly): JSX.Element; export {}; //# sourceMappingURL=DataTableColumnsSectionHeader.d.ts.map