import { Command, flags } from '@oclif/command'; export default class Goodbye extends Command { static description: string; static flags: { help: import("../../node_modules/@oclif/parser/lib/flags").IBooleanFlag; name: flags.IOptionFlag; force: import("../../node_modules/@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; }[]; run(): Promise; }