import { IInputError } from "../../../../../uiLayers/types/input/_types/IInputError";
import { INumberConstraints } from "./_types/INumberConstraints";
/**
 * Checks whether a given text matches the numeric constraints specified
 * @param text The text to match
 * @param constraints The constraints
 * @returns The numbers
 */
export declare function checkTextNumberConstraints(text: string, { min, max, increment, baseValue, checkValidity }: INumberConstraints): IInputError | undefined;
//# sourceMappingURL=checkTextNumberConstraints.d.ts.map