import { type DoctorDeps, type FixActuators } from '../domain/system/doctor.js'; export interface CliResult { exitCode: number; stdout: string; stderr: string; } export interface CmdDoctorDeps { diag: DoctorDeps; fix: FixActuators; } export declare function getDoctorHelp(): string; export declare function cmdDoctor(args: string[], override?: Partial): Promise;