import { Observable } from 'rxjs'; import { HttpClient } from '@angular/common/http'; import { PliCnfProfile } from 'ng-pli-util'; import * as i0 from "@angular/core"; export declare class ProfileService { private environment; private httpClient; private headerJson; constructor(environment: any, httpClient: HttpClient); /** It returns the profile by id */ getAll(): Observable; /** It returns the profile by id */ getById(id: number): Observable; /** It returns the profile by userId and patCodigo */ getByUserIdAndPatCodigo(userId: number, patCodigo: number, cargarListas: boolean): Observable; /** It returns the profile by patCodigo */ getByPatCodigo(patCodigo: number): Observable; /** It returns the profile by form id */ getByFormId(formId: string, cargarListas: boolean): Observable; /** It saves a profile */ save(profile: PliCnfProfile): Observable; /** It deletes a form by id */ delete(id: any): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }