/// import type { 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"; export declare class IndentPlugin extends EditorPlugin { protected editor: Editor; key: string; constructor(editor: Editor); destroy(): void; match(attrs: AttributeMap): boolean; renderLine(context: ReactLineContext): React.ReactNode; protected onKeydown(event: KeyboardEvent): void; }