import { Node } from '@tiptap/pm/model'; import { Editor } from '@tiptap/react'; declare const useContentItemActions: (editor: Editor, currentNode: Node | null, currentNodePos: number) => { resetTextFormatting: () => void; duplicateNode: () => void; copyNodeToClipboard: () => void; deleteNode: () => void; handleAdd: () => void; }; export default useContentItemActions; //# sourceMappingURL=useContentItemActions.d.ts.map