import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { PliCnfScenario } from 'ng-pli-util'; import * as i0 from "@angular/core"; export declare class PliCnfScenarioService { private environment; private httpClient; service_path: string; private headerJson; constructor(environment: any, httpClient: HttpClient); /** Returns a PliCnfScenario by id */ getById(id: number): Observable; /** Returns a list of PliCnfScenario by promCode */ getAllByPromCode(promCodigo: number): Observable; /** Saves a PliCnfScenario */ save(pliCnfScenario: PliCnfScenario): Observable; /** Deletes a PliCnfScenario with its associated task records (except tasks themselves) */ delete(id: number): Observable; /** Saves a PliCnfScenario array */ saveAll(pliCnfScenario: PliCnfScenario[]): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }