import { Validator } from'./Validator'/**
* Returns a new Validator instance.
* @param {any} value - The value to be validated.
* @returns {Validator} - The Validator instance.
*/exportfunctionvalidator(value: any): Validator {
returnnewValidator(value)
}