import { LocalStorageService } from '../local-storage/local-storage.service'; import { Subject } from 'rxjs'; import * as i0 from "@angular/core"; export interface Time { days: number; hours: number; minutes: number; seconds: number; } export declare const SESSION_COUNT_DOWN_KEY = "SESSION_COUNT_DOWN_TIME"; export declare class SessionTimerService { private localStorageServices; constructor(localStorageServices: LocalStorageService); sessionLogout$: Subject; calculateTime(timeleft: any): Time; isDateInSession(): any; removeCountDownDatesFromStorage(): void; sessionLogout(): void; getCountDownTime(minutes: any): number; storeTimeInSessionStorage(countDownDates: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }