/** * Doctor command - System health check and troubleshooting */ import type { CommandContext } from '../types/cli-types.js'; export interface DoctorOptions { verbose?: boolean; fix?: boolean; } /** * Run system health checks and diagnostics */ export declare function doctorCommand(options: DoctorOptions, context: CommandContext): Promise; //# sourceMappingURL=doctor.d.ts.map