/** * `peac doctor`: installability diagnostics. * * Runs a fixed set of offline-first checks that flag common PEAC * installation problems (Node version, required package resolution, * tracked config presence). Remote checks (JWKS reachability, reference * verifier reachability) are opt-in via the --online flag; by default * the command performs zero network calls. * * Each check reports green / yellow / red. Exit code is 0 when all * required checks are green or yellow; 1 when any required check is * red. */ import { Command } from 'commander'; export declare function runDoctor(options: { online: boolean; issuer?: string; timeout: number; cwd: string; }): Promise; export declare function doctor(program: Command): void; //# sourceMappingURL=doctor.d.ts.map