import { ElementRef, EventEmitter, SimpleChanges } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import * as i0 from "@angular/core"; export declare class UniversalSelectComponentNew implements ControlValueAccessor { private _eref; onClickOutside(target: HTMLElement): void; onKeyDown(event: KeyboardEvent): void; /** * If true, enables multi-select mode (array values). */ multiple: boolean; private _value; get value(): any; set value(val: any); formatedValue: string; options: any[]; optionLabel: string; optionValue: string; optionDisabled?: string; placeholder?: string; disabled: boolean; class: string; label?: string; labelPosition: 'top' | 'left'; required: boolean; displayValue: boolean; initValue: any; changed: boolean; valueChange: EventEmitter; change: EventEmitter; onChange: any; onTouched: any; constructor(_eref: ElementRef); ngOnChanges(changes: SimpleChanges): void; writeValue(value: any): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDisabledState(isDisabled: boolean): void; /** * Handles both native select and ngModelChange events. * Defensive: Only accesses .value if defined; emits a valid value always. */ onBlur(): void; dropdownOpen: boolean; getSelectedLabel(): string | null; getOptionFromValue(value: any): any; selectOption(option: any): void; onModelChange(event: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }