import { FC } from 'react'; import { Row, HeaderGroup } from '@tanstack/react-table'; import { EmptyStateProps } from '../../content/EmptyState/types'; export type RowsProps = { rows: Row[]; isLoading?: boolean; loadingRows?: number; headerGroups?: HeaderGroup[]; emptyStateProps?: EmptyStateProps; }; export declare const Rows: FC; //# sourceMappingURL=Rows.d.ts.map