import type { MarkSpec } from '@atlaskit/editor-prosemirror/model';
export interface IndentationMarkAttributes {
    /**
     * @minimum 1
     * @maximum 6
     */
    level: number;
}
/**
 * @name indentation_mark
 */
export interface IndentationMarkDefinition {
    attrs: IndentationMarkAttributes;
    type: 'indentation';
}
export declare const indentation: MarkSpec;
