import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/array/array-rules.d.ts /** * Unique array rule - array must contain unique values */ declare const uniqueArrayRule: SchemaRule; /** * Sorted array rule - array must be sorted */ declare const sortedArrayRule: SchemaRule<{ direction?: "asc" | "desc"; }>; //#endregion export { sortedArrayRule, uniqueArrayRule }; //# sourceMappingURL=array-rules.d.mts.map