import { OnInit, OnDestroy, DoCheck, EventEmitter, ElementRef } from '@angular/core'; import { Subscription, Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class VgCuePointsDirective 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; }