/// export type SwipeDirection = "left" | "right" | "up" | "down" | null; export interface UseSwipeOptions { threshold: number; } export declare function useSwipe(options?: UseSwipeOptions): [React.RefObject, SwipeDirection];