import { TextureBase } from "./TextureBase";
import { Camera } from "../../media/Camera";
export declare class VideoTexture extends TextureBase {
    constructor();
    attachCamera(param1: Camera): void;
    get videoWidth(): number;
    get videoHeight(): number;
}
