import { EditorState } from "prosemirror-state"; import { DirectEditorProps, EditorProps } from "prosemirror-view"; import { AbstractEditorView, NodeViewSet } from "./AbstractEditorView.js"; export declare class StaticEditorView implements AbstractEditorView { props: DirectEditorProps; readonly nodeViews: NodeViewSet; constructor(props: DirectEditorProps); get composing(): boolean; get dom(): null; get editable(): boolean; get state(): EditorState; setProps(props: Partial): void; update(props: DirectEditorProps): void; updateState(state: EditorState): void; someProp(propName: PropName, f: (value: NonNullable) => Result): Result | undefined; someProp(propName: PropName): NonNullable | undefined; destroy(): void; domSelectionRange(): { anchorNode: null; anchorOffset: number; focusNode: null; focusOffset: number; }; domSelection(): null; }