import { ElementRef, EventEmitter } from '@angular/core'; import { ControlValueAccessor } from "@angular/forms"; import * as i0 from "@angular/core"; export interface Option { value: string; label: string; } export declare class SelectComponent implements ControlValueAccessor { private elementRef; value: any; valueChange: EventEmitter; options: Array