/** * Render a two-dimensional array to a visually attractive table * * First row is considered the table header. */ export declare function formatTable(cells: string[][], columns: number | undefined): string;