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