import type { EditorState, Command } from 'prosemirror-state'; declare class Blockqote { toggle(): Command; isActive(state: EditorState): boolean; canExecute(state: EditorState): boolean; } export default Blockqote;