import { JsonCustomConvert } from "json2typescript"; /** * @export * @enum {string} */ export declare enum DynamicRuleComponentType { Unknown = 0, Condition = 1, Action = 2, Variable = 3 } export declare class DynamicRuleComponentTypeConverter implements JsonCustomConvert { serialize(data: DynamicRuleComponentType): DynamicRuleComponentType; deserialize(enumType: string): DynamicRuleComponentType; }