import { EffectBase } from "../EffectBase"; /** * Property keys understood by the built-in blur effect. * * These names map the library/effect definition layer to the underlying `PIXI.BlurFilter` settings exposed by this * wrapper. */ export declare enum BuiltInBlurEffectPropertiesEnum { STRENGTH = "strength", QUALITY = "quality", KERNEL_SIZE = "kernelSize" } /** * Built-in effect wrapper around `PIXI.BlurFilter`. * * It normalizes the public SDK property map into a configured PIXI filter instance and exposes runtime property access * through the generic `EffectBase` contract used by clips and effect libraries. */ export declare class BuiltInBlurEffect extends EffectBase { constructor(properties: Map); setProperty(propertyName: string, value: any): void; getProperty(propertyName: string): number | null; }