/** * Clamps a number between a minimum and maximum value. */ export declare function clamp(n: number, min: number, max: number): number;