import { ValidationDefination } from 'indicative-compiler'; /** * Enforces the field value to exist when none of the expected fields exists. * * ```ts * import { validations } from 'indicative/validator' * * const rules = { * zipcode: 'required_without_all:address,state' * } * * // or * const rules = { * zipcode: [ * validations.requiredWithoutAll(['address', 'state']) * ] * } * ``` */ declare const validation: ValidationDefination; export { validation as default };