import { Injector, ViewContainerRef, EmbeddedViewRef } from '@angular/core'; import { HeaderService } from '../../services/header/header.service'; import { ProfileService } from '../../services/profile/profile.service'; import { UiComponent } from '../ui/ui.component'; export declare class HeaderComponent extends UiComponent { service: HeaderService; profileService: ProfileService; sidebarTop: any[]; menuListSearch: any; title: string; loggedIn: boolean; loading: boolean; profilChanged: boolean; modalId: number; listFilter: string; _current: EmbeddedViewRef | null; breadcrumb: ViewContainerRef; constructor(injector: Injector, service: HeaderService, profileService: ProfileService); ngAfterViewInit(): void; filterChange(filter: string): void; onLoadLanguage(): void; clickLink(item: any): void; openPreferences(): void; }