import React from "react"; import VNode from "../../vnode"; import { Texture } from "three"; import { BaseProps } from "../../types/baseProps"; import { TextureProps } from "./common"; interface VideoTextureProps extends TextureProps, BaseProps { video: any; component?: any; anisotropy?: number; } /** * ๅ›พ็‰‡็บน็† */ export declare const VideoTexture: React.ComponentType; export declare class VideoTextureVNode extends VNode { static NAME: string; texture: Texture | undefined; update(props: VideoTextureProps): void; } export {};