import type { EditorState, Command } from 'prosemirror-state'; import { ToggleCommand } from './SCWysiwygTypes'; export declare type HeadingLevels = 1 | 2 | 3 | 4 | 5 | 6; declare class SCWysiwygHeading implements ToggleCommand { level: number; constructor(level: HeadingLevels); apply(): Command; toggle(): Command; isActive(state: EditorState): boolean; canExecute(state: EditorState): boolean; } export default SCWysiwygHeading;