export declare const CLICK_REGION_THRESHOLD = 10; export declare const MAX_HORIZONTAL_SWIPE_ANGLE = 45; export declare const ACTION_STATES: { NONE: null; TOUCH: string; MOUSE: string; }; export declare enum SwipeDirection { Horizontal = "horizontal", Vertical = "vertical" } export interface UseSwipeDetailsType { type: (typeof ACTION_STATES)[keyof typeof ACTION_STATES]; moveStarted: boolean; isSwipingHorizontally: boolean; clientX: number; clientY: number; swipeDistance: number; isQuickSwipe: boolean; quickSwipeTimeout: ReturnType | null; isScrolling: boolean; directionWay: SwipeDirection; }