import { TouchEvent } from 'react';
interface SwipeNavigateOptions {
    onSwipeLeft: () => void;
    onSwipeRight: () => void;
    threshold?: number;
}
export declare const useSwipeNavigate: ({ onSwipeLeft, onSwipeRight, threshold }: SwipeNavigateOptions) => {
    onTouchStart: (e: TouchEvent<HTMLElement>) => void;
    onTouchEnd: (e: TouchEvent<HTMLElement>) => void;
};
export {};
