type VarType = "STRING" | "NUMBER" | "DATE" | "BOOLEAN" | "ARRAY"; type VarSource = "INPUT" | "CONTEXT" | "CONSTANT"; interface RuleVariable { field: string; label: string; type: VarType; source: VarSource; defaultValue?: string; desc?: string; } type __VLS_Props = { variables: RuleVariable[]; }; declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & { add: (nodeType: string) => any; "update:variables": (val: RuleVariable[]) => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ onAdd?: (nodeType: string) => any; "onUpdate:variables"?: (val: RuleVariable[]) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;