import { EffectBase } from "../EffectBase"; export declare enum BuiltInAdjustmentEffectPropertiesEnum { ALPHA = "alpha", BLUE = "blue", BRIGHTNESS = "brightness", CONTRAST = "contrast", GAMMA = "gamma", GREEN = "green", RED = "red", SATURATION = "saturation", HUE = "hue", VIBRANCE = "vibrance", TEMPERATURE = "temperature", TINT = "tint" } export declare class BuiltInAdjustmentEffect extends EffectBase { constructor(properties: Map); setProperty(propertyName: string, value: any): void; getProperty(propertyName: string): number | null; }