import { ClvCustomInput } from './clv-custom-input'; import { OnInit } from '@angular/core'; /** * @deprecated */ export declare abstract class ClvCombo extends ClvCustomInput implements OnInit { indicatorText: string; ngOnInit(): void; /** * This function builds the selection data array. Inside this function, you can perform the data recovery request. */ abstract buildingFormData(): any; /** * This function builds the value of the input. */ abstract buildingValue(item: any): any; abstract buildingLibelle(item: any): any; }