import { EventEmitter, OnInit } from '@angular/core'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs'; import { SubSink } from 'subsink2'; import { SessionStates } from '../../session/session-controller/states'; export declare class AppSidebarComponent implements OnInit { private readonly store; appletName: string; opened: boolean; logoBgColor$: Observable<{ background: string; }>; sidebarBgColor$: Observable<{ background: string; }>; menuItems: any; groupMenuItems: any[]; mainPath: string; settingLabel: string; personalizationLabel: string; toggle: EventEmitter; menuClick: EventEmitter; childMenuClick: EventEmitter; src$: Observable; readonly apiVisa: import("blg-akaun-ts-lib").ApiVisa; protected subs: SubSink; userRank: string; readonly userRank$: Observable; constructor(store: Store); ngOnInit(): void; onToggle(): void; }