/** * 元素拖拽移动位置 * @param dragHandler * @param options */ export declare function useDraggable(dragHandler: any, options?: Function | { shouldCancel?: Function; direction?: 'x' | 'y' | 'xy'; }): (el?: any, options?: { dx?: number; dy?: number; }) => void;