import { Command } from '@oclif/core'; export declare class Deploy 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 deployController; /** * Runs the deploy command and parses the passed functions and flags * @returns {Promise} - deploy command * @memberof Deploy */ run(): Promise; }