import { AfterViewInit } from '@angular/core'; import { WebPlatformApiService } from '../../../services/WebPlatformApiService'; import { AppStateService } from '../../../services/AppStateService'; import { DisplayStateService } from '../../../services/DisplayStateService'; import { WidgetConfiguration } from '../../../interfaces/WidgetInterfaces'; export declare class LandingPageComponent implements AfterViewInit { private WebPlatformApiService; private appStateService; private displayStateService; Config: WidgetConfiguration; groupedItems: Map; uniqueTags: any[]; isAdmin: boolean; userFilter: string; tags: string[]; private wcList; constructor(WebPlatformApiService: WebPlatformApiService, appStateService: AppStateService, displayStateService: DisplayStateService); ngAfterViewInit(): void; Go(wc: WidgetConfiguration): void; private RulesIfCandidate(wc); onFilterChange(newVal: string): void; Refresh(): void; private groupByTags(); }