export declare class Table { columnNames: string[]; rows: IRowValue[][]; title?: string; protected newlineChars: string[]; getCsv(): string; getMarkdown(): string; generateOutput(seperator: string, topLevelCallback?: any, rowLevelCallback?: any, rowLevelLinkedTableCallback?: any): string; protected removeUnwantedChars: (value: any, unwantedChars: string[], replaceWith?: string) => any; } export interface IRowValue { columnName: string; value: string; linkedTable?: Table; }