import { ContextService } from '../context.service'; import { OnInit } from '@angular/core'; import { ConfigService } from '../config.service'; import { AuthService } from '../auth.service'; import { UrlManagerService } from '../url-manager.service'; import { Location } from '@angular/common'; import { HttpClient } from '@angular/common/http'; export declare class LogoffComponent implements OnInit { private readonly context; private readonly authService; readonly configService: ConfigService; private readonly http; private readonly urlManager; private readonly location; constructor(context: ContextService, authService: AuthService, configService: ConfigService, http: HttpClient, urlManager: UrlManagerService, location: Location); userId: string; isActive: boolean; userIsLoggedIn(): boolean; cancel(): void; logoff(): void; ngOnInit(): void; }