export interface Swipe { x: number; y: number; time: number; } export declare const getSwipeVelocity: (start: Swipe, end: Swipe) => number; export declare const getSwipeDifference: (start: Swipe, end: Swipe, axis?: "x" | "y") => number; export declare const swipedLeftToRight: (start: Swipe, end: Swipe) => boolean; export declare const swipedRightToLeft: (start: Swipe, end: Swipe) => boolean; export declare const swipeShouldChangeTab: (start: Swipe, end: Swipe) => boolean; //# sourceMappingURL=utils.d.ts.map