import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { BpmnService } from '../../lib/bpmn.service'; import * as i0 from "@angular/core"; export declare class DeploymentsService { private http; private config; private apiUrl; constructor(http: HttpClient, config: BpmnService); getAllDeployments(page: number, size: number, searchString: string): Observable; deployBpmnFile(selectedFile: File): Observable; getAllDistinctDeployments(): Observable; getVersionsByName(deploymentName: string): Observable; getDeploymentByID(id: string): Observable; updateDeployment(id: string, selectedFile: File): Observable; deleteDeployment(id: string): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }