/** * `kosha doctor` — surface deprecation warnings and provider health at a * glance. Pure projection over the registry: it reports what kosha already * knows (deprecationDate, replacedBy, breaker state, routing reliability) * without making any extra network calls. * * Pair with `kosha refresh` if you want the freshest deprecation metadata * from each provider. * @module */ import type { ModelRegistry } from "./registry.js"; /** Exit code `doctor` uses to fail a CI run without looking like a crash. */ export declare const DOCTOR_CI_EXIT_CODE = 2; /** Default deprecation window in days when `--deprecation-window` is absent. */ export declare const DOCTOR_DEFAULT_DEPRECATION_WINDOW = 30; export declare function cmdDoctor(registry: ModelRegistry, flags: Record): Promise; //# sourceMappingURL=cli-cmd-doctor.d.ts.map