import { OnInit } from '@angular/core'; import { Router } from '@angular/router'; import { LayoutService } from '../../user-area-layout.service'; import { UserIdentityService } from '../../../../../../security/authentication/user-identity.service'; import { SubsystemManager } from '../../../../../../subsystem/subsystem-manager.service'; export declare class PortalUserAreaSidebarComponent implements OnInit { private router; private userIdentityService; private subsystemManager; private layoutService; showSidebarClass: string; showSidebarOnResponsiveClass: string; showSidebarStatus: boolean; grantedItems: any; private user; titleSymbol: symbol; constructor(router: Router, userIdentityService: UserIdentityService, subsystemManager: SubsystemManager, layoutService: LayoutService); ngOnInit(): void; routeChange(data: any): void; private getGrantedItems; showHideSidebar(): void; closeResponsiveSideBar(): void; }