import type { Ref } from 'vue'; import type { CommonProps } from './useCommon'; type DragAndDropProps = Pick; interface DragAndDropOptions { targetRef: Ref; value: T; resetValue: T; type: string; scope: any; } export declare function getDragEventHandlers(props: DragAndDropProps, options: DragAndDropOptions): Record void>; export {};