import { PluginKey, Plugin } from "prosemirror-state"; import { BaseView } from "../view"; interface BaseViewState { baseView: BaseView; } export declare const BASE_VIEW_KEY: PluginKey; /** * A pointer to the full `BaseView` that initialized this state, such that it can be referenced in downstream plugins **/ export declare const baseViewStatePlugin: (baseView: BaseView) => Plugin; export {};