import { ElementRef, OnInit } from '@angular/core'; import { ControlValueAccessor } from "@angular/forms"; import { SelectorItem } from "../types/input"; import * as i0 from "@angular/core"; export declare class OptionSelectorComponent implements ControlValueAccessor, OnInit { private elementRef; label?: string; placeholder?: string; enabled: boolean; items: SelectorItem[]; optionsVisible: boolean; value: string; icon?: string; constructor(elementRef: ElementRef); private onTouched; private onChange; select(v: string): void; writeValue(value: string): void; setDisabledState?(isDisabled: boolean): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; ngOnInit(): void; onOutsideClick(target: HTMLElement): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }