import type { Application } from '../application/application.model'; import type { ITask } from '../domain'; export declare class ManifestWriter { static deployManifest(command: any, application: Application): PromiseLike; static deleteManifest(command: any, application: Application): PromiseLike; static scaleManifest(command: any, application: Application): PromiseLike; static undoRolloutManifest(command: any, application: Application): PromiseLike; static resumeRolloutManifest(command: any, application: Application): PromiseLike; static pauseRolloutManifest(command: any, application: Application): PromiseLike; static rollingRestartManifest(command: any, application: Application): PromiseLike; }