import { Position } from '../../core'; import { default as Overlay } from '../Overlay'; declare class VideoPrimitive extends Overlay { private _positions; private _video; constructor(positions: any, video: any); get type(): string; set positions(positions: string | any[]); get positions(): Position[]; set video(video: any); get video(): any; /** * * @private */ _setAppearance(): void; _mountedHook(): void; /** * Sets Style * @param style * @returns {VideoPrimitive} */ setStyle(style: any): this; } export default VideoPrimitive;