export declare function isEventFromHandle(e: any, handles: any): boolean; export declare function isValueOutOfRange(value: any, { min, max }: { min: any; max: any; }): boolean; export declare function isNotTouchEvent(e: any): boolean; export declare function getClosestPoint(val: any, { marks, step, min }: { marks: any; step: any; min: any; }): number; export declare function getPrecision(step: any): number; export declare function getMousePosition(vertical: any, e: any): any; export declare function getTouchPosition(vertical: any, e: any): any; export declare function getHandleCenterPosition(vertical: any, handle: any): any; export declare function ensureValueInRange(val: any, { max, min }: { max: any; min: any; }): any; export declare function ensureValuePrecision(val: any, props: any): number; export declare function pauseEvent(e: any): void; export declare function getKeyboardValueMutator(e: any): (value: any, props: any) => any;