import { ValidationRule, ErrorMessages } from '../types'; /** Check that the value is not shorter than the specified length */ export declare function isMinLengthFn(min: number, ignoreSpaces?: boolean, errorMessages?: ErrorMessages): ValidationRule;