import { CustomizableValidator } from '../../../types/Validator'; interface MinAgeArgs { min: number; } declare const errorCode = "INVALID_MIN_AGE"; declare const minAge: CustomizableValidator; export { minAge, errorCode };