import { Texture } from "./Texture.ts"; /** Texture sourced from a video element. Needs to be updated each frame. */ export declare class VideoTexture extends Texture { autoUpdate: boolean; /** Call each frame to re-sample from the video. */ update(): void; } //# sourceMappingURL=VideoTexture.d.ts.map