import type { Command } from 'commander'; import { type DoctorOptions, type DoctorReport } from '../lib/doctor-report.js'; export declare function runDoctor(options: DoctorOptions): Promise; export declare function registerDoctor(program: Command): void;