import type { ColorNode } from './types.js'; /** Options for {@link createBloom}. */ export interface BloomOptions { strength?: number; radius?: number; threshold?: number; } /** Wrap a BloomNode that spreads light from bright pixels for a glow effect. Returns the bloom contribution — compose with input.add(createBloom(...)). @remarks Requires the WebGPU renderer (three/webgpu) and ships via the 'threejs-scenes/webgpu' entry point. */ export declare function createBloom(input: ColorNode, options?: BloomOptions): import("three/addons/tsl/display/BloomNode.js").default; //# sourceMappingURL=bloom.d.ts.map