import type { EditorState, Command } from 'prosemirror-state'; import { ToggleCommand } from './SCWysiwygTypes'; declare class SCWysiwygBlockqote implements ToggleCommand { toggle(): Command; isActive(state: EditorState): boolean; canExecute(state: EditorState): boolean; } export default SCWysiwygBlockqote;