import { type CoreNode } from "./CoreNode.js";
import type { Texture } from "./textures/Texture.js";
export declare class CoreTexturizer {
    readonly node: CoreNode;
    enabled: boolean;
    renderTexture: Texture | null;
    rttRequested: boolean;
    constructor(node: CoreNode);
    enableRenderTexture(): void;
    createRenderTexture(): void;
    loadRenderTexture(): void;
    unloadRenderTexture(): void;
    requestRTT(): void;
}
