export interface DoctorRunOptions { /** Welcome banner instead of the plain doctor banner. */ onboarding?: boolean; /** Show the full inventory and exit (no interactive screen). */ all?: boolean; /** Skip every prompt — print the report once and exit. CI-friendly. */ nonInteractive?: boolean; } /** * Top-level entry called by cli.ts. * * - `--all` → prints the static inventory, no screen. * - non-TTY / `nonInteractive` → same. * - everything else → mounts the interactive screen. */ export declare function runDoctorInteractive(opts?: DoctorRunOptions): Promise; //# sourceMappingURL=doctor-runner.d.ts.map