import { Ref } from 'vue'; interface DragOptions { target: Ref; container: Ref; parent: Ref; enable: Ref; divLeft: Ref; divTop: Ref; hasDragged: Ref; } export declare const useDrag: (options: DragOptions) => void; export {};