import { Ref } from 'vue'; type Direction = '' | 'vertical' | 'horizontal'; type TouchDirection = '' | 'top' | 'bottom' | 'left' | 'right'; type IUseTouch = { move: (event: TouchEvent) => void; start: (event: TouchEvent) => void; reset: () => void; startX: Ref; startY: Ref; deltaX: Ref; deltaY: Ref; offsetX: Ref; offsetY: Ref; direction: Ref; touchDirection: Ref; isVertical: () => boolean; isHorizontal: () => boolean; }; declare const useTouch: () => IUseTouch; export default useTouch;