/// import "./styles/index.scss"; import type { CommandFn, EditorKit } from "doc-editor-core"; import type { BlockContext, BlockProps } from "doc-editor-core"; import { BlockPlugin } from "doc-editor-core"; export declare class AlignPlugin extends BlockPlugin { private editor; readonly key: string; constructor(editor: EditorKit); destroy(): void; onCommand: CommandFn; match(props: BlockProps): boolean; renderLine(context: BlockContext): JSX.Element; }