import { RowDatumCell } from './datum-cell.model'; export declare class TableRow { datumCells: Array; countCells: { [columnId: string]: number; }; subtotal: boolean; colspan?: number; constructor(datumCells: Array, countCells: { [columnId: string]: number; }, subtotal?: boolean, colspan?: number); }