import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/common/literal.d.ts /** * Literal rule - value must be strictly equal to one of the literal values. * * Uses === (referential / strict equality), so distinguishes 1 from "1", * true from "true", etc. Mirrors `v.string().oneOf([...])` but at the * literal type level (TypeScript narrows to the union of literals). */ declare const literalRule: SchemaRule<{ values: readonly (string | number | boolean)[]; }>; //#endregion export { literalRule }; //# sourceMappingURL=literal.d.mts.map