import { AfterViewInit, ElementRef, EventEmitter } from '@angular/core'; import { FormGroup } from '@angular/forms'; export declare class ComboBoxComponent implements AfterViewInit { name: string; optionSelected: any; options: any[]; label: string; formGroup: FormGroup; select: ElementRef; change: EventEmitter; firstLoad: boolean; constructor(); ngAfterViewInit(): void; onChange(event: any): void; ngOnDestroy(): void; }