import { type Nullable, type AbstractEngine, type EffectWrapperCreationOptions } from "../index.js"; import { EffectWrapper } from "../Materials/effectRenderer.pure.js"; import { Vector2 } from "../Maths/math.vector.pure.js"; /** * @internal */ export declare class ThinSSRBlurPostProcess extends EffectWrapper { static readonly FragmentUrl = "screenSpaceReflection2Blur"; static readonly Uniforms: string[]; static readonly Samplers: string[]; protected _gatherImports(useWebGPU: boolean, list: Promise[]): void; constructor(name: string, engine?: Nullable, direction?: Vector2, blurStrength?: number, options?: EffectWrapperCreationOptions); textureWidth: number; textureHeight: number; direction: Vector2; blurStrength: number; bind(noDefaultBindings?: boolean): void; }