import { Command } from '@oclif/core'; export default class Undeploy extends Command { static description: string; static flags: { help: import("@oclif/core/lib/interfaces").BooleanFlag; yes: import("@oclif/core/lib/interfaces").BooleanFlag; 'no-watch': import("@oclif/core/lib/interfaces").BooleanFlag; }; static strict: boolean; static args: { name: string; }[]; static examples: string[]; private undeployController; /** * Runs the undeploy command and parses the passed functions and flags * @returns {Promise} - undeploy command * @memberof Undeploy */ run(): Promise; }