import { ComponentType } from "react"; import { NodeViewSet } from "../AbstractEditorView.js"; import { MarkViewComponentProps } from "../components/marks/MarkViewComponentProps.js"; import { NodeViewComponentProps } from "../components/nodes/NodeViewComponentProps.js"; export type NodeViewContextValue = { components: Record | ComponentType>; constructors: NodeViewSet; }; export declare const NodeViewContext: import("react").Context;