/**
 * 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
 */
declare function clampValue(value: number, min: number, max: number): number;

export { clampValue as default };
