/**
* Clamps a value to ensure it stays within the min and max range.
*
* @param value the value to clamp
* @param min the minimum value
* @param max the maximum value
*/declarefunctionclampValue(value: number, min: number, max: number): number;
export { clampValue asdefault };