import { Ref } from "vue";
export declare function useDraggable(props: any, context: any, canMove: Ref<boolean>): {
    registerDraggle: (handle: HTMLElement, hostElement: HTMLElement, boundingHost: HTMLElement | null) => void;
    resetTranslate: () => void;
};
