import { RenderTarget, RenderTargetOptions } from "../core/RenderTarget.js"; import { Texture } from "../textures/Texture.js"; export class WebGLRenderTarget extends RenderTarget { constructor(width?: number, height?: number, options?: RenderTargetOptions); readonly isWebGLRenderTarget: true; }