/** * File Organizer MCP - Diagnostic Tool * Comprehensive health checks for installation and configuration */ export interface DiagnosticResult { name: string; success: boolean; message: string; fix?: string; details?: string[]; } export interface DiagnosticSummary { passed: number; failed: number; warnings: number; results: DiagnosticResult[]; } /** * Run all diagnostic checks */ export declare function runDiagnostics(): Promise; //# sourceMappingURL=diagnostics.d.ts.map