/** Linear interpolation — returns the value `t` of the way between `min` and `max`. */ export declare const lerp: (min: number, max: number, t: number) => number; /** Inverse linear interpolation — returns how far `value` lies between `min` and `max` as a fraction. */ export declare const inverseLerp: (min: number, max: number, value: number) => number; /** * Remaps `value` from the input range `[inMin, inMax]` to the output range * `[outMin, outMax]`, clamping the result to the output range so values outside * the input range do not extrapolate. */ export declare const interpolateClamped: (value: number, inMin: number, inMax: number, outMin: number, outMax: number) => number; //# sourceMappingURL=interpolate.d.ts.map