import { EffectBase } from "../EffectBase"; export declare enum BuiltInEmbossEffectPropertiesEnum { strength = "strength" } export declare class BuiltInEmbossEffect extends EffectBase { constructor(properties: Map); setProperty(propertyName: string, value: any): void; getProperty(propertyName: string): number | null; }