import { Command, flags } from '@oclif/command'; export default class Hello extends Command { static description: string; static examples: 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; }