/** * `oc-forgecode setup-models` — manage per-agent model chains. * * Subcommands: * install Interactive installer. Asks about provider subscriptions, * fetches the live opencode provider catalog (if reachable), * resolves each agent's fallback chain, and writes the result * to forge-config.jsonc. * status Show current `agents.*.model` entries. * reset Remove the `agents` block so the next run regenerates it. * show-chains Print the built-in per-agent fallback chains. * preview Dry-run assignments for a given provider set. */ interface CliOptions { dir?: string; resolvedProjectId?: string; dbPath?: string; } export declare function cli(args: string[], _globalOpts?: CliOptions): Promise; export declare function help(): void; /** * Strip a top-level `"agents": { ... }` block (and its leading comments/ * trailing comma) from a JSONC string. Returns null if no block is found. */ export declare function removeAgentsBlock(raw: string): string | null; export {}; //# sourceMappingURL=setup-models.d.ts.map