import { ProjectService } from '../../lib/services/project.service'; import { MessageService } from '../../lib/services/message.service'; import { FileService } from '../../lib/services/file.service'; export interface PushOptions { copy?: string; vendor?: string; } export declare class PushCommand { private fileService; private messageService; private projectService; DEPLOY_DIR: string; constructor(fileService: FileService, messageService: MessageService, projectService: ProjectService); run(options: PushOptions): Promise; private staging; private pushing; private cleanup; private copyResources; private saveVendor; }