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