import { ElementValidatorBase } from './Abstracts/ElementValidatorBase'; import type { ElementValidationMessageResolver, ElementValidationResult, ElementValidatorFn } from './Abstracts/Interfaces/IElementValidator'; import { isNumericValue as _isNumericValue } from './NumericElementValidatorFn'; /** * @private */ interface INumericElement extends HTMLElement { value: string; } /** * @public */ export declare class NumericElementValidator extends ElementValidatorBase { constructor(host: TElement, messageResolver?: ElementValidationMessageResolver); protected get attributes(): Array; validate(): ElementValidationResult | null; } export declare namespace NumericElementValidator { const isNumericValue: typeof _isNumericValue; } /** * The factory function for the `NumericElementValidator`. * * @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 numericElementValidator(resolver?: ElementValidationMessageResolver): ElementValidatorFn; export {}; //# sourceMappingURL=NumericElementValidator.d.ts.map