import { EventEmitter, OnDestroy, OnInit } from '@angular/core'; import { DescriptorOption } from '../../descriptor/descriptor-option'; import { LovService } from '../../services/lov.service'; import { VedraxBaseComponent } from '../vedrax-base.component'; import * as i0 from "@angular/core"; /** * Class that defines a select component */ export declare class VedraxSelectComponent extends VedraxBaseComponent implements OnInit, OnDestroy { private lovService; private subscription; /** * Emit number of options when all of them are available */ isReady: EventEmitter; constructor(lovService: LovService); options: DescriptorOption[]; ngOnInit(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }