import "./styles/index.scss"; import type { BlockContext, CommandFn, EventContext } from "doc-editor-core"; import type { EditorKit } from "doc-editor-core"; import { BlockPlugin } from "doc-editor-core"; import type { RenderElementProps } from "doc-editor-delta"; import type { KeyboardEvent } from "react"; export declare class UnorderedListPlugin extends BlockPlugin { private editor; key: string; constructor(editor: EditorKit); destroy(): void; match(props: RenderElementProps): boolean; onCommand: CommandFn; renderLine(context: BlockContext): JSX.Element; onKeyDown: (event: KeyboardEvent, context: EventContext) => void; }