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