import { ChangeDetectorRef } from '@angular/core'; export declare class ConnectedVideoPlayerComponent { private _document; private _cdr; autoplay: boolean; isPlaying: boolean; src: string; volume: number; private _videoElement; private _fullscreenWrapper; readonly focusWithin: boolean; private _focusWithin; private _closeRequest; constructor(src: string, _closeRequest: any, _document: any, volume: number, _cdr: ChangeDetectorRef); onFocusin(): void; onFocusout(): void; onDocumentKeydown(e: KeyboardEvent): void; close(): void; onMediaEnded(): void; checkAfterVideoElement(): void; onVideoPlay(): void; onVideoPause(): void; togglePlay(): void; onSliderSeek($event: number): void; toggleFullScreen(): void; displayFullScreenBtn(): (options?: FullscreenOptions | undefined) => Promise; }