/** * `forge doctor` — Diagnostic health check for ForgeOS setup. * * Validates global config, project config, engine connectivity, API key, * gates config, and version compatibility. Outputs a checklist with * pass/fail/warning indicators. * * Flags: * --json Output results as JSON instead of formatted text */ import { Command } from "commander"; import { ForgeOSClient } from "../../shared/client.js"; export declare function registerDoctorCommands(parent: Command, client: ForgeOSClient): void; //# sourceMappingURL=doctor.d.ts.map