interface DoctorCheck { name: string; status: 'ok' | 'warn' | 'fail'; detail: string; fix?: string; } declare function runDoctor(): Promise; export { type DoctorCheck, runDoctor };