import { ElementValidatorBase } from './Abstracts/ElementValidatorBase'; import type { ElementValidationMessageResolver, ElementValidationResult, ElementValidatorFn } from './Abstracts/Interfaces/IElementValidator'; /** * @private */ interface IMaxElement extends HTMLElement { max: number; value: string; } /** * @public */ export declare class MaxElementValidator extends ElementValidatorBase { constructor(host: TElement, messageResolver?: ElementValidationMessageResolver); protected get attributes(): Array; validate(): ElementValidationResult | null; } /** * A factory function for the `MaxElementValidator`. * * @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 maxElementValidator(resolver?: ElementValidationMessageResolver): ElementValidatorFn; export {}; //# sourceMappingURL=MaxElementValidator.d.ts.map