import { TypedPostProcessNode, TypedPostNodeContext } from './_Base'; import { UnrealBloomPass } from '../../../modules/three/examples/jsm/postprocessing/UnrealBloomPass'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class UnrealBloomPostParamsConfig extends NodeParamsConfig { /** @param effect strength */ strength: import("../utils/params/ParamsConfig").ParamTemplate; /** @param effect radius */ radius: import("../utils/params/ParamsConfig").ParamTemplate; /** @param effect threshold */ threshold: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class UnrealBloomPostNode extends TypedPostProcessNode { params_config: UnrealBloomPostParamsConfig; static type(): string; protected _create_pass(context: TypedPostNodeContext): UnrealBloomPass; update_pass(pass: UnrealBloomPass): void; } export {};