export interface DoctorReport { info: string[]; warnings: string[]; errors: string[]; } export declare function runDoctor(projectRoot: string): Promise;