import ApplicationManager from '../application-manager'; import { Service } from '../types/service'; export interface ServiceAction { action: string; serviceId: number; current: Service; target: Service; options: any; } declare function doRestart(applications: ApplicationManager, appId: number, force: boolean): Promise; declare function doPurge(applications: ApplicationManager, appId: number, force: boolean): Promise; declare function serviceAction( action: string, serviceId: number, current: Service, target: Service, options: any, ): ServiceAction;