import { Editor } from '@tiptap/react'; /** * Shared jsdom editor factory for unit tests (use-editor-commands.test.tsx, * selection-utils.test.ts, ...). Collaboration owns the doc, so content must * be set via `setContent` *after* construction — passing `content` to the * `Editor` constructor is silently ignored once Collaboration is configured. */ export declare const makeEditor: (content?: string) => Editor;