import React from 'react'; import { TableColumn, TableColors, ExpandableProps } from '../guifad/_Organisms/Table'; interface TableRowProps { i: number; r: any; columns: TableColumn[]; 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; getDisplay: (v: any, c: TableColumn, test: any) => React.ReactNode; onRowClick: (i: number, e: any) => void; onRowDoubleClick: (i: number, e: any) => void; } declare const TableRow: React.FC; export default TableRow;