import { ObjectDirective } from 'vue'; export type DndContext = { sourceElement: HTMLElement; currentDropElement?: HTMLElement; currentPosition?: 'before' | 'after'; }; export declare const vDragSupport: ObjectDirective; export declare const vDropSupport: ObjectDirective; export declare const vParentDropSupport: ObjectDirective;