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