import { Command, flags } from '@oclif/command'; declare class OclifExampleSingleTs extends Command { static description: string; static flags: { version: import("../node_modules/@oclif/parser/lib/flags").IBooleanFlag; 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; } export = OclifExampleSingleTs;