import { Editor, type AnyExtension } from '@tiptap/core'; import type { BlockTuple } from './blocks/types.js'; export interface CreateCommonPubEditorOptions { content?: BlockTuple[]; editable?: boolean; placeholder?: string; onUpdate?: (blocks: BlockTuple[]) => void; extensions?: AnyExtension[]; element?: HTMLElement; } export declare function createCommonPubEditor(options?: CreateCommonPubEditorOptions): Editor; //# sourceMappingURL=editorKit.d.ts.map