import { Extension } from '@tiptap/core'; export interface DragHandleOptions { /** * The width of the drag handle */ dragHandleWidth: number; } declare const Draggable: Extension; export default Draggable;