import type { Command } from "commander"; import type { AIUsageStats } from "../client.js"; /** * Build the per-stage table rows for `stats --tokens`, sorted by cost descending * (most expensive stage first). Exported so the output shape can be unit-tested * without a live server. */ export declare function buildStageRows(stats: AIUsageStats): string[][]; export declare function registerStatsCommand(program: Command): void; //# sourceMappingURL=stats.d.ts.map