/** * Terminal table renderer */ import type { DailyStats } from "./types"; export type JsonOutput = { periods: Array<{ date: string; models: string[]; providers: Array<{ id: string; models: string[]; input: number; output: number; cacheRead: number; cacheWrite: number; reasoning: number; cost: number; }>; totals: { input: number; output: number; cacheRead: number; cacheWrite: number; reasoning: number; cost: number; }; }>; totals: { input: number; output: number; cost: number; }; }; export declare function renderJson(dailyStats: Map): void; export declare function renderTable(dailyStats: Map): void;