import type { RefObject } from 'react'; type SwipeDirection = 'up' | 'left' | 'bottom' | 'right'; export declare function useOnSwipe(element: RefObject, onSwipe: (direction: SwipeDirection) => any | false, minSwipeDistance?: number): void; export {};