/** * Allows to set the result of the shader * * */ import { TypedGlNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { ShadersCollectionController } from './code/utils/ShadersCollectionController'; declare class OutputGlParamsConfig extends NodeParamsConfig { } export declare class OutputGlNode extends TypedGlNode { params_config: OutputGlParamsConfig; static type(): string; initializeNode(): void; set_lines(shaders_collection_controller: ShadersCollectionController): void; } export {};