import type { Row, Table } from "@tanstack/react-table"; import type { ReactNode } from "react"; import React from "react"; interface BodyProps { readonly table: Table; readonly onRowClick?: (row: Row) => void; readonly emptyState?: ReactNode | ReactNode[]; readonly loading: boolean; } export declare function Body({ table, onRowClick, emptyState, loading, }: BodyProps): React.JSX.Element; export {};