import { OnInit, AfterViewInit } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { ValueListDataService } from '../../base/services/valuelist.service'; export declare class MyLabelComponent implements OnInit, AfterViewInit { private http; styleClass: string; dataSource: string; dataOptions: Object[]; fieldValue: string; fieldText: string; labelDataCache: Object[]; dataService: ValueListDataService; constructor(http: HttpClient); ngOnInit(): void; ngAfterViewInit(): void; getLabelData(dataSource: string): Promise; processResult(resultArray: Object[], inputValue: any): void; }