import { Router } from '@angular/router'; import { TranslateService } from '@ngx-translate/core'; import { Configurations } from '../../../Configuration'; import { LoginService } from '../service/login.service'; import { MessageService } from '../service/message.service'; import { AuthServiceBase } from './auth.service.base'; import { MenuService } from './menu.service'; export declare class AuthService extends AuthServiceBase { protected router: Router; private messageService; protected loginService: LoginService; protected menuService: MenuService; protected translateService: TranslateService; endPoint: string; constructor(router: Router, messageService: MessageService, loginService: LoginService, menuService: MenuService, translateService: TranslateService, config?: Configurations); getAuthSession(pageAble: any, search?: string): import("rxjs").Observable; }