import React from 'react'; import { TableColumn, TableColors, ExpandableProps } from '../guifad/_Organisms/Table'; interface TableBodyProps { columns: TableColumn[]; filteredRecords: any[]; finalSelectedRows: { [index: number]: boolean; }; columnWidths: { [key: string]: number; }; rowHeight?: number; tableColors?: TableColors; expandableRowProps?: ExpandableProps; rowExpanded: { [r: number]: boolean; }; onToggleRowExpand: (i: number) => void; isParent?: (c: any, p: any) => boolean; showTree?: boolean; getColumnWidth: (key: string) => number; getNestingDepth1: (recordIndex: number) => number; nestingInfo: any; isRowOpen: (rowIndex: number) => boolean; isParentRowOpen1: (recordIndex: number) => boolean; getDisplay: (v: any, c: TableColumn, test: any) => React.ReactNode; onRowClick: (i: number, e: any) => void; onRowDoubleClick: (i: number, e: any) => void; } declare const TableBody: React.FC; export default TableBody;