import type { Editor } from "@tiptap/core"; import type { Node } from "@tiptap/pm/model"; declare const useContentItemActions: (editor: Editor, currentNode: Node | null, currentNodePos: number) => { resetTextFormatting: () => void; duplicateNode: () => void; copyNodeToClipboard: () => void; deleteNode: () => void; handleAdd: () => void; }; export default useContentItemActions;