import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { sesion } from 'ng-pli-util'; import * as i0 from "@angular/core"; export declare class SesionService { private environment; private httpClient; private headerJson; constructor(environment: any, httpClient: HttpClient); /** It returns the list of sesion by login */ getByLogin(login: string): Observable; getEmailByLogin(login: string): Observable; getIngresoExterno(login: string): Observable; /** * @description if login has a session returns true else false * @param login identification number * @return Boolean */ getHasSession(login: string): Observable; /** * It returns list of inactive users * @return list of sesions */ getInactiveUsers(): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }