export declare const accent: import("ansis").Ansis; export declare const dimmed: import("ansis").Ansis; /** Values supported by the terminal table renderer. */ type TableCellValue = string | number | boolean | bigint | null | undefined; type TableInput = { columns: readonly { header: string; cell: (row: Row) => TableCellValue; }[]; rows: readonly Row[]; }; /** * Renders rows and column definitions as a bordered terminal table. * * @param input - Table columns and row values. */ export declare function renderTable(input: TableInput): string; export {}; //# sourceMappingURL=io.d.ts.map