import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/string/alpha.d.ts /** * Alpha rule - allows only alphabetic characters */ declare const alphaRule: SchemaRule; /** * AlphaNumeric rule - allows only alphanumeric characters */ declare const alphaNumericRule: SchemaRule; /** * Numeric string rule - allows only numeric characters */ declare const isNumericRule: SchemaRule; //#endregion export { alphaNumericRule, alphaRule, isNumericRule }; //# sourceMappingURL=alpha.d.mts.map