import { Observable } from 'rxjs'; import { HttpClient } from '@angular/common/http'; import { PliUser } from 'ng-pli-util'; import * as i0 from "@angular/core"; export declare class PliUserService { private environment; private httpClient; private headerJson; constructor(environment: any, httpClient: HttpClient); /** It returns the list */ getAll(): Observable; /** It deletes a form by id */ delete(id: any): Observable; /** It returns the user by id */ getById(id: number): Observable; /** It returns the user by id */ getByLogin(login: string): Observable; /** It saves a user */ save(user: PliUser): Observable; /** It returns the list of users by patCodigo and list of profiles id */ getByPatCodigoAndProfileIdList(patCodigo: number, listProfileId: number[]): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }