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