import { BaseTexture } from "./BaseTexture";
/**
 * <code>VideoTexture</code> 多媒体纹理
 */
export declare class VideoTexture extends BaseTexture {
    /**videoTexture对象池*/
    static _videoTexturePool: Array<VideoTexture>;
    private _video;
    private _needUpdate;
    /**
     * 创建VideoTexture对象，
     */
    constructor();
    /**
     * 获得绑定的资源Video
     * return HTMLVideoElement
     */
    get video(): any;
    /**
     * @value
     * 输入Video资源
     */
    set video(value: any);
    /**
     * 开始播放视频
     */
    videoPlay(): void;
    /**
     * 暂停播放视频
     */
    videoPause(): void;
    destroy(): void;
}
