import { EffectBase } from "../EffectBase"; export declare enum BuiltInBevelEffectPropertiesEnum { LIGHT_ALPHA = "lightAlpha", LIGHT_COLOR = "lightColor", ROTATION = "rotation", SHADOW_ALPHA = "shadowAlpha", SHADOW_COLOR = "shadowColor", THICKNESS = "thickness" } export declare class BuiltInBevelEffect extends EffectBase { constructor(properties: Map); setProperty(propertyName: string, value: any): void; getProperty(propertyName: string): number | number[] | null; }