/** * Doctor Command * Health check for APIClaw installation and MCP client configurations */ export interface DoctorResult { healthy: boolean; checks: CheckResult[]; summary: string; } export interface CheckResult { category: string; name: string; status: 'pass' | 'fail' | 'warn' | 'skip'; message: string; details?: string; } /** * Run all health checks */ export declare function runDoctor(options?: { serverName?: string; }): Promise; /** * Format doctor results for display */ export declare function formatDoctorOutput(result: DoctorResult): string; /** * Doctor command handler */ export declare function doctorCommand(options?: { serverName?: string; json?: boolean; }): Promise; //# sourceMappingURL=doctor.d.ts.map