export interface DoctorCommandOptions { json?: boolean; cwd?: string; } type DoctorStatus = 'passed' | 'warning' | 'failed'; interface DoctorCheck { name: string; status: DoctorStatus; message: string; expected?: string; actual?: string; path?: string; } interface DoctorAuth { required: false; source: 'not-required'; } interface DoctorPayload { ok: boolean; command: 'doctor'; version: string; cwd: string; auth: DoctorAuth; checks: DoctorCheck[]; warnings: DoctorCheck[]; errors: DoctorCheck[]; nextActions: string[]; } export declare function buildDoctorPayload(options?: DoctorCommandOptions): Promise; export declare function runDoctorCommand(options?: DoctorCommandOptions): Promise; export {};