/** * Mostly copied from https://github.com/oclif/command but adds support for space separated commands */ import { Command } from '@oclif/command'; import * as Config from '@oclif/config'; export declare class Main extends Command { static run(argv?: string[], options?: Config.LoadOptions): PromiseLike; init(): Promise; run(): Promise; protected _helpOverride(): boolean; protected _help(): never; } export declare function run(argv?: string[], options?: Config.LoadOptions): PromiseLike;