import { ValidationDefination } from 'indicative-compiler'; /** * Enforces the field value passes the alpha regex `/^[a-z]+$/i`. * * ```ts * import { validations } from 'indicative/validator' * * const rules = { * username: 'alpha' * } * * // or * const rules = { * username: [ * validations.alpha() * ] * } * ``` */ declare const validation: ValidationDefination; export { validation as default };