/** Object that represents the converted JSON properties and relationships in a tabular form with nested tables. * @export * @class RelationalJson */ export declare class RelationalJson { columnNames: string[]; rows: IRowValue[][]; title?: string; } export interface IRowValue { columnName: string; value: string; linkedTable?: RelationalJson; }