import React from 'react'; import { TableDataItemBase, TableOnCellClick, TableOnRowClick, TableRowClassNameHandler } from "./table-types"; interface Props { hover: boolean; emptyText: string; onRow?: TableOnRowClick; onCell?: TableOnCellClick; data: Array; className?: string; rowClassName: TableRowClassNameHandler; } declare const defaultProps: { className: string; }; declare type NativeAttrs = Omit, keyof Props>; export declare type TableBodyProps = Props & NativeAttrs; declare const TableBody: { ({ data, hover, emptyText, onRow, onCell, rowClassName, }: Props & NativeAttrs & { className: string; }): JSX.Element; defaultProps: { className: string; }; displayName: string; }; export default TableBody;