import { EffectBase } from "../EffectBase"; export declare enum BuiltInColorReplaceEffectPropertiesEnum { ORIGINAL_COLOR = "originalColor", NEW_COLOR = "newColor", EPSILON = "epsilon" } export declare class BuiltInColorReplaceEffect extends EffectBase { constructor(properties: Map); setProperty(propertyName: string, value: any): void; getProperty(propertyName: string): number | number[] | null; }