/// import "./styles/index.scss"; import type { BlockContext, CommandFn, EditorKit } from "doc-editor-core"; import { BlockPlugin } from "doc-editor-core"; export declare class ParagraphPlugin extends BlockPlugin { private editor; key: string; priority: number; constructor(editor: EditorKit); destroy(): void; match(): boolean; onCommand: CommandFn; renderLine(context: BlockContext): JSX.Element; }