type GetInRangeOptions = { min?: number; max?: number; }; export declare class NumberUtils { static getInRange(value: number, options?: GetInRangeOptions): number; } export {};