import { OnInit } from '@angular/core'; import { SelectConfig } from '../../entities/select-config'; import { HttpService } from '../../services/http/http-service.service'; export declare class SLinkageComponent implements OnInit { private httpService; optionList: any; constructor(httpService: HttpService); filterOPtions: any; childrenList: any; compareFn: (o1: any, o2: any) => boolean; ngOnInit(): void; getOptionData(obj: any): any; renderOptionList(obj: any, data: any): any; setChildrenParams(item: any): void; clearChildren(item: any): void; optionChange(options: SelectConfig, e: any): void; }