/** * ASCII markdown table formatting. */ import type { ColumnMeta } from './types.js'; /** * Format evaluated data as an ASCII markdown table. * Includes a "Row" column with 1-based row numbers. * Skips rows that are entirely empty. */ export declare function formatTable(evaluated: string[][], headers: string[], columnMeta: ColumnMeta[], colCount: number, startRow?: number, endRow?: number, startCol?: number, endCol?: number): string; /** * Format a filtered subset of rows as an ASCII markdown table. * Row indices are 0-based. */ export declare function formatFilteredTable(evaluated: string[][], headers: string[], columnMeta: ColumnMeta[], colCount: number, rowIndices: number[]): string; //# sourceMappingURL=table.d.ts.map