export declare class Table { columnNames: string[]; rows: IRowValue[][]; title?: string; readonly csv: string; } export interface IRowValue { columnName: string; value: string; linkedTable?: Table; }