/** * View 1: Run Summary Table. * * Displays a table of all run logs with key metrics and computed costs. * * @module */ import type { RunLog } from '../../ai/types.js'; /** * Render the run summary table to stdout. * * Displays one row per run with columns: Run, Backend, Model, Files, Calls, * Input Tok, Output Tok, Cache Read, Cache Write, Duration, Errors, Cost. * * @param logs - Array of run logs (already sorted newest first) */ export declare function renderSummaryTable(logs: RunLog[]): void; //# sourceMappingURL=summary.d.ts.map