/// import "./styles/index.scss"; import type { BlockContext, CommandFn, CopyContext, EditorKit, PasteContext } from "doc-editor-core"; import { BlockPlugin } from "doc-editor-core"; import type { RenderElementProps } from "doc-editor-delta"; export declare class HighlightBlockPlugin extends BlockPlugin { private editor; private readonly; private reflex; key: string; constructor(editor: EditorKit, readonly: boolean); destroy(): void; match(props: RenderElementProps): boolean; onCommand: CommandFn; serialize(context: CopyContext): void; deserialize(context: PasteContext): void; renderLine(context: BlockContext): JSX.Element; }