import "./styles/index.scss"; import type { CMDPayload, Editor } from "@block-kit/core"; import type { AttributeMap } from "@block-kit/delta"; import type { ReactLeafContext } from "@block-kit/react"; import { EditorPlugin } from "@block-kit/react"; import type { ReactNode } from "react"; import { SelectionPlugin } from "../shared/modules/selection"; export declare class DividerPlugin extends EditorPlugin { protected editor: Editor; key: string; selection: SelectionPlugin; constructor(editor: Editor); destroy(): void; protected onExec(context: CMDPayload): undefined; match(attrs: AttributeMap): boolean; renderLeaf(context: ReactLeafContext): ReactNode; }