import { OrientedBoundingBox } from "../bounding-box"; import { GraphicsAdapter } from "../graphics"; import { MElement } from "./MElement"; import { TransformableElement } from "./TransformableElement"; export type MVideoProps = { width: number | null; height: number | null; enabled: boolean; loop: boolean; startTime: number; pauseTime: number | null; src: string | null; volume: number; castShadows: boolean; emissive: number; }; export declare class Video extends TransformableElement { static tagName: string; private videoAnimatedAttributeHelper; static get observedAttributes(): Array; private documentTimeListener; private collideableHelper; private clickableHelper; props: MVideoProps; private static attributeHandler; private videoGraphics; protected enable(): void; protected disable(): void; constructor(); getContentBounds(): OrientedBoundingBox | null; addSideEffectChild(child: MElement): void; removeSideEffectChild(child: MElement): void; parentTransformed(): void; isClickable(): boolean; attributeChangedCallback(name: string, oldValue: string | null, newValue: string): void; private documentTimeChanged; connectedCallback(): void; disconnectedCallback(): void; } //# sourceMappingURL=Video.d.ts.map