/** * CLI: `oc-forgecode stats` — quick insight into system operation. * * Reads from the local telemetry database and displays: * - Total events by type * - Time windows * - Success rates * - Fallback / undo / loop counts */ interface CliOptions { resolvedProjectId?: string; dir?: string; dbPath?: string; json?: boolean; } export declare function cli(args: string[], globalOpts: CliOptions): Promise; export declare function run(args: string[], globalOpts?: CliOptions): Promise; export declare function help(): void; export {}; //# sourceMappingURL=stats.d.ts.map