import type { Nullable } from '../../../Types/Nullable'; import type { ElementValidationError } from './Abstracts/Interfaces/IElementValidator'; /** * Validator that requires the length of the control's value to be greater than or equal * * State: * * tooShort * * @public */ export declare function minLengthValidator(element: HTMLElement & { value: string; minlength: number; }): Nullable; //# sourceMappingURL=MinLengthElementValidatorFn.d.ts.map