import { OnInit, OnDestroy, EventEmitter, TemplateRef } from '@angular/core'; import { NavigationNode } from './services/navigation.model'; import { Router } from '@angular/router'; import { ReplaySubject } from 'rxjs'; export declare class GlobalNavComponent implements OnInit, OnDestroy { private router; appName: string; navigationNodes: NavigationNode[]; activeRoute: string; currentNode: NavigationNode; brandIcon: string | undefined; appContent: TemplateRef; navbarAction: TemplateRef; menuClick: EventEmitter; brandAction: EventEmitter; nodeChosen: EventEmitter; logout: EventEmitter; currentRoute: ReplaySubject; constructor(router: Router); ngOnInit(): void; ngOnDestroy(): void; }