export declare function clip(val: number, low: number, high: number): number; export declare function clipToBox(point: { x: number; y: number; }, box: { width: number; height: number; }): void; export default clip;