import type { EditorState, Command } from 'prosemirror-state';
import { InsertCommand } from './types';
type IndentMethod = 'increase' | 'decrease';
declare class Indent implements InsertCommand {
    method: IndentMethod;
    constructor(method: IndentMethod);
    insert(): Command;
    canExecute(state: EditorState): boolean;
}
export default Indent;
