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