import type { CMDPayload, Editor } from "@block-kit/core"; import type { AttributeMap } from "@block-kit/delta"; import type { ReactLineContext } from "@block-kit/react"; import { EditorPlugin } from "@block-kit/react"; import type { EventContext } from "@block-kit/utils"; import type { ReactNode } from "react"; export declare class BulletListPlugin extends EditorPlugin { protected editor: Editor; key: string; constructor(editor: Editor); destroy(): void; match(attrs: AttributeMap): boolean; renderLine(context: ReactLineContext): ReactNode; protected onExec(payload: CMDPayload): undefined; protected onKeyDown(event: KeyboardEvent, context: EventContext): undefined; }