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 DefinitionService { private http; private config; private apiUrl; constructor(http: HttpClient, config: BpmnService); getAllDefinitions(page: number, size: number, searchString: string): Observable; createDefinition(payload: any): Observable; getDefinitionByID(id: string): Observable; updateDefinition(id: string, payload: any): Observable; deleteDefinition(id: string): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }