/** * Allows to access global variables * * */ import { TypedGlNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { ShadersCollectionController } from './code/utils/ShadersCollectionController'; declare class GlobalsGlParamsConfig extends NodeParamsConfig { } export declare class GlobalsGlNode extends TypedGlNode { params_config: GlobalsGlParamsConfig; static type(): string; initializeNode(): void; set_lines(shaders_collection_controller: ShadersCollectionController): void; } export {};