import { flags } from '@oclif/command'; import Base from './command-base'; export default abstract class AppCommand extends Base { static flags: { defaults: import("@oclif/parser/lib/flags").IBooleanFlag; options: flags.IOptionFlag; force: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; required: boolean; description: string; }[]; abstract type: string; run(): Promise; }