import { ElementRef, OnInit, OnDestroy, SimpleChanges, OnChanges, EventEmitter } from '@angular/core'; import { VgAPI } from '../../core/services/vg-api'; import { Subscription } from 'rxjs'; import { BitrateOption } from '../../core/vg-core.module'; import * as i0 from "@angular/core"; export declare class VgQualitySelector implements OnInit, OnChanges, OnDestroy { API: VgAPI; bitrates: BitrateOption[]; onBitrateChange: EventEmitter; bitrateSelected: BitrateOption; elem: HTMLElement; target: any; subscriptions: Subscription[]; ariaValue: string | number; constructor(ref: ElementRef, API: VgAPI); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; selectBitrate(index: number): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }