import { ITableOptions } from '../types/core.js'; import { ColorCapability } from '../terminal/color-converter.js'; /** * Renders an array of objects as a formatted ASCII table * @param rows - Array of row objects * @param options - Table rendering options * @param colorCap - Terminal color capability * @returns Formatted table string */ export declare function renderTable(rows: Record[], options?: ITableOptions, colorCap?: ColorCapability): string; //# sourceMappingURL=cli-table.d.ts.map