import { Constructor } from '../../../../types/GlobalTypes'; import { Material } from 'three/src/materials/Material'; import { Texture } from 'three/src/textures/Texture'; import { TypedMatNode } from '../_Base'; import { BaseTextureMapController, UpdateOptions } from './_BaseTextureController'; import { ShaderMaterial } from 'three/src/materials/ShaderMaterial'; import { NodeParamsConfig } from '../../utils/params/ParamsConfig'; export declare function TextureEnvMapParamConfig(Base: TBase): { new (...args: any[]): { useEnvMap: import("../../utils/params/ParamsConfig").ParamTemplate; envMap: import("../../utils/params/ParamsConfig").ParamTemplate; envMapIntensity: import("../../utils/params/ParamsConfig").ParamTemplate; }; } & TBase; declare class TextureEnvMaterial extends Material { envMap: Texture | null; } declare type CurrentMaterial = TextureEnvMaterial | ShaderMaterial; declare const TextureEnvMapParamsConfig_base: { new (...args: any[]): { useEnvMap: import("../../utils/params/ParamsConfig").ParamTemplate; envMap: import("../../utils/params/ParamsConfig").ParamTemplate; envMapIntensity: import("../../utils/params/ParamsConfig").ParamTemplate; }; } & typeof NodeParamsConfig; declare class TextureEnvMapParamsConfig extends TextureEnvMapParamsConfig_base { } declare abstract class TextureEnvMapMatNode extends TypedMatNode { texture_env_map_controller: TextureEnvMapController; abstract create_material(): CurrentMaterial; } export declare class TextureEnvMapController extends BaseTextureMapController { protected node: TextureEnvMapMatNode; constructor(node: TextureEnvMapMatNode, _update_options: UpdateOptions); initializeNode(): void; update(): Promise; static update(node: TextureEnvMapMatNode): Promise; } export {};