/** * If the validation rule is not valid, then this describes why the rule failed. * * `"RULE_FAILED"` - The formula evaluated to `false` or `null` * * `"PARSE_ERROR"` - The formula could not be parsed * * `"VALUE_ERROR"` - An error occurred while evaluating the formula */ export declare const RuleValidationResultRulesItemFailureReason: { readonly RuleFailed: "RULE_FAILED"; readonly ParseError: "PARSE_ERROR"; readonly ValueError: "VALUE_ERROR"; }; export type RuleValidationResultRulesItemFailureReason = (typeof RuleValidationResultRulesItemFailureReason)[keyof typeof RuleValidationResultRulesItemFailureReason] | string;