/// import "./styles/index.scss"; import type { BlockContext, CommandFn } from "doc-editor-core"; import type { EditorKit } from "doc-editor-core"; import { BlockPlugin } from "doc-editor-core"; import type { BaseRange, NodeEntry, RenderElementProps } from "doc-editor-delta"; export declare class ReactLivePlugin extends BlockPlugin { private editor; key: string; private raw; constructor(editor: EditorKit); destroy(): void; match(props: RenderElementProps): boolean; onCommand: CommandFn; renderLine(context: BlockContext): JSX.Element; onDecorate(entry: NodeEntry): BaseRange[]; }