import { AlignmentMarkDefinition, IndentationMarkDefinition } from '../marks';
import { MarksObject, NoMark } from './types/mark';
import { Inline } from './types/inline-content';
/**
 * @name heading_node
 */
export interface HeadingBaseDefinition {
    type: 'heading';
    /**
     * @allowUnsupportedInline true
     */
    content?: Array<Inline>;
    marks?: Array<any>;
    attrs: {
        /**
         * @minimum 1
         * @maximum 6
         */
        level: number;
        /**
         * An optional UUID for unique identification of the node
         */
        localId?: string;
    };
}
/**
 * @name heading_with_no_marks_node
 */
export type HeadingDefinition = HeadingBaseDefinition & NoMark;
/**
 * @name heading_with_alignment_node
 */
export type HeadingWithAlignmentDefinition = HeadingBaseDefinition & MarksObject<AlignmentMarkDefinition>;
/**
 * @name heading_with_indentation_node
 */
export type HeadingWithIndentationDefinition = HeadingBaseDefinition & MarksObject<IndentationMarkDefinition>;
export type HeadingWithMarksDefinition = HeadingWithAlignmentDefinition | HeadingWithIndentationDefinition;
export declare const heading: import("prosemirror-model").NodeSpec;
