import { Injector } from '@angular/core'; import { BaseComponent } from '../base-component'; import { Menu } from '../../models/rights/menu'; import { AuthenticationService } from '../../services/authentication.service'; export declare class MenuOptionsComponent extends BaseComponent { protected _authService: AuthenticationService; path: string; menus: Menu[]; constructor(_injector: Injector, _authService: AuthenticationService); ngOnInit(): void; isActive(path: any): boolean; changeActivePage(target: string, extra?: { queryParams: { fromRoute: string; }; }, hideNavigation?: boolean): void; private getSubMenusForPath; }