import * as PIXI from "pixi.js"; import { EffectBase } from "../EffectBase"; export declare enum BuiltInRadialBlurEffectPropertiesEnum { angle = "angle", center = "center", kernelSize = "kernelSize", radius = "radius" } export declare class BuiltInRadialBlurEffect extends EffectBase { constructor(properties: Map); setProperty(propertyName: string, value: any): void; getProperty(propertyName: string): number | (number[] | PIXI.Point) | null; }