/** * Clamps a value between two inclusive limits */ export declare function clamp(value: T, minimum: T | null, maximum?: T | null): T; //# sourceMappingURL=clamp.d.ts.map