import type { ReactNode } from "react"; import type { RowBorder } from "./Table.types"; interface TableBodyProps { rows: any[]; columns: any[]; keyField?: string; noRowsContent: ReactNode; loading?: boolean; rowHovers?: boolean; compact?: boolean; onRowMouseLeave?: (...args: any[]) => any; onRowMouseEnter?: (...args: any[]) => any; rowBorder?: RowBorder; } declare const TableBody: ({ rows, columns, keyField, noRowsContent, loading, rowHovers, compact, onRowMouseLeave, onRowMouseEnter, rowBorder, }: TableBodyProps) => import("react/jsx-runtime").JSX.Element; export default TableBody;