import { Extension } from '@tiptap/core'; import { Plugin } from '@tiptap/pm/state'; export interface GlobalDragHandleOptions { /** * The width of the drag handle */ dragHandleWidth: number; /** * The treshold for scrolling */ scrollTreshold: number; dragHandleSelector?: string; /** * Tags to be excluded for drag handle */ excludedTags: string[]; /** * Custom nodes to be included for drag handle */ customNodes: string[]; } export declare function DragHandlePlugin(options: GlobalDragHandleOptions & { pluginKey: string; }): Plugin; declare const GlobalDragHandle: Extension; export default GlobalDragHandle;