/** Clamp `num` between `min` and `max` inclusively. */ declare const clamp: (min: number, num: number, max: number) => number; export default clamp;