import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { PliCnfFormEdit } from 'ng-pli-util'; import * as i0 from "@angular/core"; export declare class PliCnfFormEditService { private environment; private httpClient; private headerJson; constructor(environment: any, httpClient: HttpClient); /** Returns a PliCnfEvaluationTemplate by id */ getById(id: number): Observable; /** Returns a list of PliCnfEvaluationTemplate by ids * @param ids id per template */ getByIds(ids: number[]): Observable; /** Returns a list of PliCnfEvaluationTemplate by promCode */ getAllByPromCodigo(promCodigo: number): Observable; /** Saves a template with its associated document and form records */ save(pliCnfFormEdit: PliCnfFormEdit): Observable; /** Deletes a template with its associated document and form records, * unless there is another configuration using the specified evaluation template */ delete(id: number): Observable; getByPageSection(pageSection: string): Observable; getByPageSectionAndPromCode(pageSection: string, promCodigo: number): Observable; /** Saves arrays template with its associated document and form records */ saveAll(pliCnfFormEdit: PliCnfFormEdit[]): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }