import type { Ref } from 'vue'; export declare function useTouch({ el, isActive, isTemporary, width, touchless, position }: { el: Ref; isActive: Ref; isTemporary: Ref; width: Ref; touchless: Ref; position: Ref<'left' | 'right' | 'top' | 'bottom'>; }): { isDragging: import("vue").ShallowRef; dragProgress: import("vue").ShallowRef; dragStyles: import("vue").ComputedRef<{ transform: string; transition: string; } | undefined>; };