import { Schema } from 'prosemirror-model'; import type { Node } from 'prosemirror-model'; import { EditorState } from 'prosemirror-state'; import type { Plugin } from 'prosemirror-state'; export declare const editorSchema: Schema; export declare const listItemNode: import("prosemirror-model").NodeType; export declare const createPlugins: () => Plugin[]; export declare const createEditorState: (doc: Node) => EditorState; export declare const docFromHtml: (html: string | undefined, schema?: Schema) => Node; export declare const editorDocToHtml: (doc: Node, schema?: Schema) => string; //# sourceMappingURL=editorCore.d.ts.map