export interface DoctorCheck { name: string; status: "pass" | "fail" | "warn"; message?: string; } export interface DoctorReport { checks: DoctorCheck[]; success: boolean; } export declare function doctorCommand(path: string): Promise; //# sourceMappingURL=doctor.d.ts.map