import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class FormService { private environment; private httpClient; private headerJson; constructor(environment: any, httpClient: HttpClient); /** It returns the list of form by prom codigo */ getByPromCodigo(promCodigo: number): Observable; /** It returns the list of form by prom codigo */ getAll(): Observable; /** It returns a form by id */ getById(id: any): Observable; /** It saves a form */ save(form: any): Observable; saveFormMultiPromCodigo(reMultPromCodDto: any): Observable; /** It deletes a form by id */ delete(id: any): Observable; /** It returns the form according to profile have been setting up in form */ getByPromCodigoAccordingToProfile(promCodigo: number, patCodigo: number, formId?: string): Observable; /** It returns the form according to list of prom codigo */ getByListPromCodigo(listPromCod: Array): Observable; /** It remove the redis cache of the form by prom codigo */ removeFromCacheByPromCodigo(promCodigo: number): Observable; /** It remove the redis cache of the form by prom codigo */ removeFromCacheByPromCodigoAndTitle(promCodigo: number, title: string): Observable; /** It remove the redis cache of the form by prom codigo */ removeFromCacheByPromCodigoAndProfile(promCodigo: number, patCodigo: number, formId: string, username: string): Observable; /** * Get form by Id * @param statusId */ getByStateId(statusId: string): Observable; getConfigCloningFormMap(oldFormPPP: number, newFormPPP: number): Observable; getListFormProjectSummaryConfigByPromCodigo(promCodigo: number, patCodigo: number): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }