import { EventEmitter } from '@angular/core'; import { Subject } from 'rxjs'; import { IEventCard } from './models/IEventCard'; import { NotificationModel } from './models/NotificationModel'; export declare class NgxLiveViewService { videoelementSubject: Subject; eventsCards: Subject; notificationemittor: EventEmitter; constructor(); /** * The above function is used to pass the video element to the videoGrid component. * @param {any} inputPlayVideo - This is the video object that is passed to the service from the * component. */ playVideo(inputPlayVideo: any): void; }