import type { Ref, ComputedRef } from 'vue';
export declare const useDraggable: (targetRef: Ref<HTMLElement | undefined>, dragRef: Ref<HTMLElement | undefined>, dragData: Record<string, any>, draggable: ComputedRef<boolean>, options: {
    sticky: boolean;
    stickyDistance: number;
}) => void;
