import { Schema, Node as ProseMirrorNode, ParseOptions } from 'prosemirror-model';
import { HTML } from './trustedTypesUtil';
export declare const emptyDoc: {
    type: string;
    content: {
        type: string;
    }[];
};
export declare const toHTML: (json: Record<string, unknown>, inputSchema?: Schema) => string;
export declare const toDoc: (html: HTML, inputSchema?: Schema, options?: ParseOptions) => Record<string, unknown>;
export declare const parseContent: (value: HTML | Record<string, unknown> | null, schema: Schema, options?: ParseOptions) => ProseMirrorNode;
