import { BaseCommand } from '../base-command.js'; export default class Doctor extends BaseCommand { static description: string; static flags: { verbose: import("@oclif/core/interfaces").BooleanFlag; json: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; }