import { ValidationRule, ErrorMessages } from '../types'; /** Check that the value does not exceeds the specified length */ export declare function isMaxLengthFn(max: number, ignoreSpaces?: boolean, errorMessages?: ErrorMessages): ValidationRule;