import { ElementRef, OnDestroy, OnInit, QueryList } from '@angular/core'; import { PoNavbarItem } from '../interfaces/po-navbar-item.interface'; export declare class PoNavbarItemsComponent implements OnInit, OnDestroy { private readonly router; navbarItemsContainer: ElementRef; allNavbarItems: QueryList; items: Array; selectedItem: PoNavbarItem; private routeSubscription; ngOnDestroy(): void; ngOnInit(): void; private checkActiveItemByUrl; private checkRouterChildrenFragments; private subscribeToRoute; }