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