/**
* Numeric functions and number helpers
*/
export declareclassNumberUtil{
/**
* Constrain a value to a minimum and maximum (if outside bounds, clip to bounds
* @param value
* @param min
* @param max
*/staticconstrain(value: number, min: number, max: number): number;
}