import { type Nullable, type AbstractEngine, type EffectWrapperCreationOptions, type Vector2 } from "../index.js"; import { ThinBlurPostProcess } from "./thinBlurPostProcess.js"; /** * @internal */ export declare class ThinDepthOfFieldBlurPostProcess extends ThinBlurPostProcess { constructor(name: string, engine: Nullable | undefined, direction: Vector2, kernel: number, options?: EffectWrapperCreationOptions); }