import type { CmsEditProject } from './types.js'; export type DoctorSeverity = 'error' | 'warning' | 'info'; export interface DoctorFinding { severity: DoctorSeverity; code: string; message: string; } export declare function runProjectDoctor(configPath: string, project: CmsEditProject): DoctorFinding[]; //# sourceMappingURL=doctor.d.ts.map