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