import { type Nullable, type AbstractEngine, type EffectWrapperCreationOptions } from "../index.js"; import { EffectWrapper } from "../Materials/effectRenderer.pure.js"; /** * @internal */ export declare class ThinBloomMergePostProcess extends EffectWrapper { static readonly FragmentUrl = "bloomMerge"; static readonly Uniforms: string[]; static readonly Samplers: string[]; protected _gatherImports(useWebGPU: boolean, list: Promise[]): void; constructor(name: string, engine?: Nullable, options?: EffectWrapperCreationOptions); /** Weight of the bloom to be added to the original input. */ weight: number; bind(noDefaultBindings?: boolean): void; }