import { Plugin } from "prosemirror-state";
export interface DragHandleOptions {
    /**
     * The width of the drag handle
     */
    dragHandleWidth: number;
}
export declare function dragHandlePlugin(options?: DragHandleOptions): Plugin<any>;
export declare function globalDragDropPlugin(): Plugin<any>;
