/** * CLI: `oc-forgecode ci run` — run a loop/harness in CI and report results. * * Non-TTY mode with JSON output, markdown report, and proper exit codes. * Suitable for GitHub Actions and other CI systems. */ interface CliOptions { resolvedProjectId?: string; dir?: string; dbPath?: string; } 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=ci.d.ts.map