/**
 * Clamps (or clips or confines) the value to be between min and max.
 */
declare function clamp(value: number, min: number, max: number): number;

declare namespace clamp {}

export = clamp;
