import { ValidationRule } from '../types/index.js'; /** * Function to ensure that a string is below or equal to a certain length. * @param {Number} maxLength - Max length of the string. */ declare const maxLength: (max: any) => ValidationRule; export { maxLength };