import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/string/string-comparison.d.ts /** * Starts with rule */ declare const startsWithRule: SchemaRule<{ value: string; }>; /** * Ends with rule */ declare const endsWithRule: SchemaRule<{ value: string; }>; /** * Contains rule */ declare const containsRule: SchemaRule<{ value: string; }>; /** * Not contains rule */ declare const notContainsRule: SchemaRule<{ value: string; }>; //#endregion export { containsRule, endsWithRule, notContainsRule, startsWithRule }; //# sourceMappingURL=string-comparison.d.mts.map