import { default as React } from 'react'; import { Column } from './table-types'; type TableBodyProps = { columns: Column[]; rows: any[]; noRowsMessage?: string; onRowClick?: (arg: { row: any; index: number; event: React.MouseEvent | React.KeyboardEvent; }) => void; keyField?: string; }; declare const TableBody: ({ columns, rows, noRowsMessage, onRowClick, keyField }: TableBodyProps) => React.JSX.Element; export default TableBody;