import { EffectBase } from "../EffectBase"; export declare enum BuiltInMotionBlurEffectPropertiesEnum { kernelSize = "kernelSize", offset = "offset", velocity = "velocity" } export declare class BuiltInMotionBlurEffect extends EffectBase { constructor(properties: Map); setProperty(propertyName: string, value: any): void; getProperty(propertyName: string): number | number[] | null; }