import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/conditional/present-unless-rules.d.ts /** * Present unless rule - field must be present unless another field equals a specific value * Supports both global and sibling scope */ declare const presentUnlessRule: SchemaRule<{ field: string; value: any; scope?: "global" | "sibling"; }>; //#endregion export { presentUnlessRule }; //# sourceMappingURL=present-unless-rules.d.mts.map