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.
*/declareconstmaxLength: (max: any) =>ValidationRule;
export { maxLength };