import { CustomizableValidator } from '../../../types/Validator'; interface MaxAgeArgs { max: number; } declare const errorCode = "INVALID_MAX_AGE"; declare const maxAge: CustomizableValidator; export { maxAge, errorCode };