import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core'; import { ControlValueAccessor, NgControl } from '@angular/forms'; import * as i0 from "@angular/core"; export declare class SelectComponent implements OnInit, ControlValueAccessor { private ngControl; private changeDetectorRef; options: any[]; label?: string; defaultText?: string; value?: string; idKey: string; nameKey: string; disabled: boolean; required: boolean; changeOption: EventEmitter; control?: (NgControl | null); invalid: boolean; private onChange; private onTouched?; constructor(ngControl: NgControl, changeDetectorRef: ChangeDetectorRef); ngOnInit(): void; checkControl(): void; writeValue(value: any): void; registerOnChange(onChangeCallback: (updatedValue: any) => void): void; registerOnTouched(onTouchedCallback: () => void): void; setDisabledState(isDisabled: boolean): void; onOptionChange(event: any): void; handleChangeOption(el: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }