import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/common/equals-field-rules.d.ts /** * Equals field rule - value must equal another field's value * Supports both global and sibling scope */ declare const equalsFieldRule: SchemaRule<{ field: string; scope?: "global" | "sibling"; }>; /** * Not equals field rule - value must NOT equal another field's value * Supports both global and sibling scope */ declare const notEqualsFieldRule: SchemaRule<{ field: string; scope?: "global" | "sibling"; }>; //#endregion export { equalsFieldRule, notEqualsFieldRule }; //# sourceMappingURL=equals-field-rules.d.mts.map