import { EffectBase } from "../EffectBase"; export declare enum BuiltInHSLAdjustmentEffectPropertiesEnum { alpha = "alpha", colorize = "colorize", hue = "hue", lightness = "lightness", saturation = "saturation" } export declare class BuiltInHSLAdjustmentEffect extends EffectBase { constructor(properties: Map); setProperty(propertyName: string, value: any): void; getProperty(propertyName: string): number | boolean | null; }