/** * Doctor command - Validate configuration and diagnose issues */ import { Command } from 'commander'; import { DoctorOptions, DoctorResult, DoctorCheck } from './types.js'; /** * Doctor command definition */ export declare const doctorCommand: Command; /** * Main handler for doctor command */ declare function handleDoctor(options: DoctorOptions): Promise; /** * Display a single check result */ declare function displayCheck(check: DoctorCheck, options: { noColor?: boolean; verbose?: boolean; }): void; /** * Display summary of all checks */ declare function displaySummary(result: DoctorResult, options: { noColor?: boolean; }): void; export { handleDoctor, displayCheck, displaySummary }; //# sourceMappingURL=index.d.ts.map