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