import type { CliOptions } from "./utils.js"; export interface DoctorIssue { type: "error" | "warning"; category: "config" | "storage" | "migration"; message: string; fix?: () => Promise; } export interface DoctorResult { issues: DoctorIssue[]; tasksChecked: number; } export declare function doctorCommand(args: string[], options: CliOptions): Promise; //# sourceMappingURL=doctor.d.ts.map