///
import { OnInit } from '@angular/core';
import { VideoI } from '../../../../interfaces/core/video.interface';
import * as i0 from "@angular/core";
export declare class VideoComponent implements OnInit, VideoI {
title?: string;
video?: ModalVideo;
ytPlayer: YT.Player;
playerVars: {
enablejsapi: number;
autoplay: number;
controls: number;
showinfo: number;
modestbranding: number;
loop: number;
fs: number;
cc_load_policy: number;
iv_load_policy: number;
autohide: number;
rel: number;
playsinline: number;
};
apiLoaded: boolean;
player: YT.Player;
get getVideo(): string;
private readonly dialogRef;
private readonly renderer;
ngOnInit(): void;
closeModal(): void;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}
export interface ModalVideo {
src: string;
title?: string;
}