import { Table } from '@tanstack/react-table'; import { StyledTableProps } from '../types'; import { ColumnWindow } from '../hooks/useColumnVirtualizer'; export declare function TableRows>({ styledTableProps, table, columnWindow, }: { styledTableProps: StyledTableProps; table: Table; columnWindow: ColumnWindow; }): JSX.Element;