import { ElementValidatorBase } from './Abstracts/ElementValidatorBase'; import type { ElementValidationMessageResolver, ElementValidationResult, ElementValidatorFn } from './Abstracts/Interfaces/IElementValidator'; /** * @private */ interface IMinLengthElement extends HTMLElement { minlength: number; value: string; } /** * @public */ export declare class MinLengthElementValidator extends ElementValidatorBase { constructor(host: TElement, messageResolver?: ElementValidationMessageResolver); protected get attributes(): Array; validate(): ElementValidationResult | null; } /** * A factory function for the `MinLengthElementValidator`. * * @public * @param resolver - A *optional* message resolver to get the error message that will be displayed. When not provided, a default message will be used. */ export declare function minlengthElementValidator(resolver?: ElementValidationMessageResolver): ElementValidatorFn; export {}; //# sourceMappingURL=MinLengthElementValidator.d.ts.map