import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/file/dimensions.d.ts /** * Min width rule - image width validation */ declare const minWidthRule: SchemaRule<{ minWidth: number; }>; /** * Max width rule - image width validation */ declare const maxWidthRule: SchemaRule<{ maxWidth: number; }>; /** * Min height rule - image height validation */ declare const minHeightRule: SchemaRule<{ minHeight: number; }>; /** * Max height rule - image height validation */ declare const maxHeightRule: SchemaRule<{ maxHeight: number; }>; //#endregion export { maxHeightRule, maxWidthRule, minHeightRule, minWidthRule }; //# sourceMappingURL=dimensions.d.mts.map