import { UseSwipeOptions } from './types'; export declare enum SWIPE_DIRECTION { RIGHT = "right", LEFT = "left", UP = "up", DOWN = "down" } declare const useSwipe: ({ ref, thresholdPX }: UseSwipeOptions) => SWIPE_DIRECTION | null; export default useSwipe; //# sourceMappingURL=useSwipe.d.ts.map