import { OnInit, EventEmitter } from '@angular/core'; import { SelectConfig } from '../../entities/select-config'; import { HttpService } from '../../services/http/http-service.service'; import { CommonService } from '../../services/common/common.service'; export declare class SSelectorComponent implements OnInit { private httpService; private commonService; options: SelectConfig; optionChange: EventEmitter; style: { maxHeight: string; overflow: string; }; constructor(httpService: HttpService, commonService: CommonService); loading: boolean; pramas: any; compareFn: (o1: any, o2: any) => boolean; /** 默认请求数据 */ ngOnInit(): void; modelChange(e: any): void; getStepMess(): void; /** 下拉框展开时获取数据 */ openChange(e: any): void; /** 分页下拉加载更多 */ loadMore(): void; initParams(): void; getOptionsData(): void; renderOptionList(data: any): void; resetOPtionData(data: any, name?: any, value?: any): void; initOptions(): void; }