import type { Nullable } from '../../../Types/Nullable'; import type { ElementValidationError } from './Abstracts/Interfaces/IElementValidator'; /** * Validator that requires the control's value to be less than or equal to the provided number. * * State: * * rangeOverflow * * @public * @param element * @returns null if the validation check passes, otherwise an object containing information. */ export declare function maxValidator(element: HTMLElement & { value: string; max: number; }): Nullable; //# sourceMappingURL=MaxElementValidatorFn.d.ts.map