import { Node } from "@tiptap/core"; export interface DragPlaceholderOptions { HTMLAttributes: Record; } declare module "@tiptap/core" { interface Commands { dragPlaceholder: { setDragPlaceholder: (options: { id: string; type: string; pos?: number; }) => ReturnType; removeDragPlaceholder: () => ReturnType; }; } } export declare const DragPlaceholder: Node;