import { Command } from '@oclif/core'; import { Config } from '@oclif/core/lib/config'; import * as DeployPackage from './package/deploy.js'; import * as DeployPlugin from './plugin/deploy.js'; export default class Deploy extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; static args: never[]; deployPackage: DeployPackage.default; deployPlugin: DeployPlugin.default; constructor(argv: string[], config: Config); run(): Promise; }