import type { Nullable } from '../../../Types/Nullable'; import type { ElementValidationError } from './Abstracts/Interfaces/IElementValidator'; /** * Validator that requires the control's value to be numeric. * * State: * * badInput * * @public * @param control * @returns null if the validation check passes, otherwise an object containing information. */ export declare function numericValidator(control: HTMLElement & { value: string | null; }): Nullable; /** * Checks if the value is numeric. * * @param value - The value to check. * @returns True if the value is numeric, false otherwise. */ export declare function isNumericValue(value: unknown): boolean; //# sourceMappingURL=NumericElementValidatorFn.d.ts.map