export declare class Table { headers: Row; rows: Row[]; widths: any[]; constructor(headers: Row, rows: Row[], widths?: any[]); } export declare class Cell { content: string; style: any | string; constructor(content: string, style?: any | string); get(): any; } export declare class Row { cells: Cell[]; constructor(cells: Cell[]); get(): any; }