export declare class HtmlTable { rows: string[][]; constructor(); getNrofRows(): number; getNrofColumns(): number; getValue(aRow: number, aCol: number): string | null; setValue(aRow: number, aCol: number, aValue: string | number): void; private getRowSpan; dump(aFileName: string, anIndentString?: string, aCompleteHtmlFile?: boolean): void; toString(): string; toHtmlString(anIndentString?: string): string; }