import { OnInit } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; import { NgbModal } from '@ng-bootstrap/ng-bootstrap'; import { AuthService, LocalStorage } from 'finpass-angular-services'; import { NavigationEmitterService } from '../../services/NavigationEmitterService'; export declare class NavigationComponent implements OnInit { private authService; private router; private activedRoute; private document; private localStorage; private modalService; private navigationEmitter; name: string; loginInfo: any; id: number; width: number; hasToken: boolean; accessType: any; accessTypeRoute: any; menuItems: ({ label: string; icon: string; method: string; activeWhere: string; rules: string[]; hideInURI?: undefined; badge?: undefined; useFaIconComponent?: undefined; event?: undefined; } | { label: string; icon: string; method: string; rules: string[]; hideInURI: RegExp[]; activeWhere?: undefined; badge?: undefined; useFaIconComponent?: undefined; event?: undefined; } | { label: string; icon: string[]; method: string; activeWhere: string; rules: string[]; badge: string; useFaIconComponent: boolean; hideInURI?: undefined; event?: undefined; } | { label: string; icon: string; method: string; rules: string[]; activeWhere?: undefined; hideInURI?: undefined; badge?: undefined; useFaIconComponent?: undefined; event?: undefined; } | { label: string; icon: string; rules: string[]; event: string; method?: undefined; activeWhere?: undefined; hideInURI?: undefined; badge?: undefined; useFaIconComponent?: undefined; })[]; submenuItems: ({ label: string; method: string; rules: string[]; hideInURI?: undefined; } | { label: string; method: string; rules: string[]; hideInURI: RegExp[]; })[]; profileBoxOpen: boolean; logoUrl: any; isBO: boolean; constructor(authService: AuthService, router: Router, activedRoute: ActivatedRoute, document: any, localStorage: LocalStorage, modalService: NgbModal, navigationEmitter: NavigationEmitterService); ngOnInit(): void; getState(item: any): boolean; getAccessTypeRoute(): void; goToDashboard(): void; goToConsolidatedOfBids(): void; goToDataroom(): void; goToCompaniesConsultant(): void; goToIndications(): void; goToCompanies(): void; goToConsultants(): void; goToOperations(): void; goToInvestors(): void; goToCreditOperationList(): void; goToCNDList(): void; goToCollaterals(): void; goToPendencies(): void; goToReferral(): void; goToProfile(): void; goToPayment(): void; goToConfig(): void; goToEditProfile(): void; canDisplayNav(entity: any): boolean; openChangePassword(): void; logout(): void; onResize($event: any): void; goTo(item: any): void; listenerEvents(): void; hideInThisURI(item: any): any; hasPermission(rules: string[]): boolean; toggleProfileBox(): void; getLogoUrl(): string; }