import type { ColumnDef } from '@tanstack/react-table'; export interface IVirtualizedInfiniteTableProps { rows: T[]; columns: ColumnDef[]; className?: string; hasNextPage?: boolean; fetchNextPage?: () => void; } export declare const VirtualizedInfiniteTable: (props: IVirtualizedInfiniteTableProps) => import("react/jsx-runtime").JSX.Element;