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