import { Node as ProsemirrorNode } from "prosemirror-model"; import { NodeView } from "prosemirror-view"; export declare class HtmlBlock implements NodeView { dom: HTMLElement | null; constructor(node: ProsemirrorNode); } export declare class HtmlBlockContainer implements NodeView { dom: HTMLElement | null; contentDOM?: HTMLElement | null; constructor(node: ProsemirrorNode); }