import { OnInit, OnDestroy, ChangeDetectorRef, ElementRef } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; import { BitService, BitEventsService, BitSupportService } from 'ngx-bit'; import { NzNotificationService } from 'ng-zorro-antd/notification'; import { MainService, SystemService } from 'van-skeleton'; export declare class DashboardsComponent implements OnInit, OnDestroy { private router; private route; private system; private mainService; private events; private notification; support: BitSupportService; bit: BitService; private changeDetectorRef; header: ElementRef; warpper: ElementRef; collapsed: boolean; navLists: any[]; private statusSubscription; private firstDispatch; constructor(router: Router, route: ActivatedRoute, system: SystemService, mainService: MainService, events: BitEventsService, notification: NzNotificationService, support: BitSupportService, bit: BitService, changeDetectorRef: ChangeDetectorRef); ngOnInit(): void; ngOnDestroy(): void; /** * Get Menu Lists */ private getMenuLists; private dispatch; level(data: any): number; /** * User logout */ logout(): void; }