import { ElementRef, EventEmitter, OnDestroy, OnInit, DoCheck } from '@angular/core'; import { Observable, Subscription } from 'rxjs'; import * as i0 from "@angular/core"; export declare class VgCuePoints implements OnInit, OnDestroy, DoCheck { ref: ElementRef; onEnterCuePoint: EventEmitter; onUpdateCuePoint: EventEmitter; onExitCuePoint: EventEmitter; onCompleteCuePoint: EventEmitter; subscriptions: Subscription[]; cuesSubscriptions: Subscription[]; onLoad$: Observable; onEnter$: Observable; onExit$: Observable; totalCues: number; constructor(ref: ElementRef); ngOnInit(): void; onLoad(event: any): void; updateCuePoints(cues: TextTrackCue[]): void; onEnter(event: any): void; onExit(event: any): void; ngDoCheck(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }