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