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