import { Ref } from 'vue'; export interface UseModalDragMoveContext { maximum: Ref; props: any; draggable: Ref; destroyOnClose: Ref | undefined; visible: Ref; moverEl?: string; } export declare function useModalDragMove(context: UseModalDragMoveContext): { locator: { top: any; bottom: any; left: any; right: any; }; sign: { x: any; y: any; l: any; t: any; }; moving: Ref; };