import type { InstallScope } from '../../platform/install/types.js'; type DoctorScope = InstallScope | 'auto'; interface DoctorOptions { json?: boolean; repair?: boolean; yes?: boolean; strategy?: 'continue' | 'rollback'; scope?: DoctorScope; homeDir?: string; } export declare function doctorCommand(targetPath: string, options?: DoctorOptions): Promise; export {}; //# sourceMappingURL=doctor.d.ts.map