import type { EditorState, Command } from 'prosemirror-state'; export declare type Align = 'left' | 'center' | 'right' | 'justify'; declare class TextAlign { align: string; constructor(align: Align); toggle(): Command; isActive(state: EditorState): boolean; canExecute(state: EditorState): boolean; } export default TextAlign;