import { Command } from '@oclif/command'; export default class Boilerplate extends Command { static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; }[]; run(): Promise; catch(e: Error): Promise; }