import type { Fragment, Node, Schema } from 'prosemirror-model'; import type { PmJsonTextNode, PmJsonNode } from './types'; export declare const fromJSON: (schema: Schema, json: PmJsonNode | PmJsonTextNode, createFragment: (nodes?: Node[]) => Fragment) => Node;