import { ValidationRule } from '../types/index.js'; /** * Rule to validate a number that must be less than some amount. * @param {Number} max - Maximum value. */ declare const lessThan: (max: any) => ValidationRule; export { lessThan };