import { type ColumnDef, type Row as RowType } from '@tanstack/table-core'; import { type Row } from '../../Table'; import { ColumnName, DataRow } from '../../Table/utils/functions'; interface TableSectionProps { rows: Row[]; columns: Array>; initialSorting: Array<{ id: string; desc: boolean; }>; selectedRow: RowType | null; onRowClick: (row: DataRow) => void; shouldHighlightRow: (row: Row) => boolean; enableHighlighting: boolean; columnVisibility: Record; height?: number; sandwichFunctionName?: string; } export declare function TableSection({ rows, columns, initialSorting, selectedRow, onRowClick, shouldHighlightRow, enableHighlighting, columnVisibility, height, sandwichFunctionName, }: TableSectionProps): JSX.Element; export {}; //# sourceMappingURL=TableSection.d.ts.map