/** * Clamp a value in the 0–1 range. * @link https://js-toolkit.studiometa.dev/utils/math/clamp01.html */ export declare function clamp01(value: number): number;