import type { EditorKit } from "doc-editor-core"; import { BlockPlugin } from "doc-editor-core"; import type { KeyboardEvent } from "react"; export declare class IndentPlugin extends BlockPlugin { private editor; key: string; priority: number; constructor(editor: EditorKit); destroy(): void; match(): boolean; onKeyDown: (event: KeyboardEvent) => void; }