import type { CommandArguments, CommandResult } from "../../../shared/interfaces/command.interface.js"; import { BaseCommand } from "../base.command.js"; /** * Doctor command handler * Runs environment health checks defined in envkit.yaml */ export declare class DoctorCommand extends BaseCommand { readonly name = "doctor"; readonly description = "Run environment health checks defined in envkit.yaml"; private readonly logger; execute(args: CommandArguments): Promise; } //# sourceMappingURL=doctor.command.d.ts.map