/** * NCP Doctor Command * Comprehensive diagnostics for troubleshooting NCP and MCP health */ export interface DiagnosticCheck { name: string; status: 'HEALTHY' | 'UNHEALTHY' | 'DEGRADED' | 'UNKNOWN'; message?: string; details?: string[]; } export declare class DoctorCommand { /** * Run all diagnostic checks */ static diagnose(mcpName?: string): Promise; private static checkNodeVersion; private static checkNpm; private static checkCwd; private static checkProfileDirectory; private static checkCacheSystem; private static displayResults; private static getStatusIcon; } //# sourceMappingURL=doctor.d.ts.map