/// import "./styles/index.scss"; import type { BlockContext } from "doc-editor-core"; import type { EditorKit } from "doc-editor-core"; import { BlockPlugin } from "doc-editor-core"; export declare class DocToolBarPlugin extends BlockPlugin { private editor; private readonly; private plugins; readonly key = "doc-toolbar"; readonly priority: number; constructor(editor: EditorKit, readonly: boolean, plugins?: import("./types").DocToolbarPlugin[]); destroy(): void; match(): boolean; renderLine(context: BlockContext): JSX.Element; }