/** * Checks if the argument is in the range of the min max parameters. * @param value The value being checked. * @param min The min parameter * @param max The max parameter * @throws {@link IsError} if min is not a number * @throws {@link IsError} if max is not a number * @returns True if the argument is in range. */ export declare function isNumberInRange(value: any, min: number, max: number): boolean; export declare function isNumberInRangeError(value: number, min: number, max: number, field: string, code?: string): void;