import { OnInit } from '@angular/core'; import { Observable } from 'rxjs'; export declare class NavigationComponent implements OnInit { navigations$: Observable; animationState$: Observable<'displayNavigations' | 'displayLogo'>; constructor(); ngOnInit(): void; trackByUrl(index: number, item: Navigation): string; } export interface Navigation { name: string; url: string; valid: boolean; after: boolean; current: boolean; presence: boolean; }