import type { Table } from '@code-pushup/models'; type AsciiTableOptions = { borderless?: boolean; padding?: number; maxWidth?: number; }; export declare function formatAsciiTable(table: Table, options?: AsciiTableOptions): string; export {};