import { Command, flags } from '@oclif/command'; export default class DeployCommand extends Command { static description: string; static examples: string[]; static flags: { envId: flags.IOptionFlag; serviceName: flags.IOptionFlag; port: import("@oclif/parser/lib/flags").IOptionFlag; dryRun: import("@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; }