import type { MarkSpec } from '@atlaskit/editor-prosemirror/model';
/**
 * @name inline_comment_marker
 * @description This temporary mark represents a Confluence-backed inline comment that wraps a piece of text. It will be replaced with a cross-product inline comment solution at later date.
 */
export interface ConfluenceInlineCommentDefinition {
    attrs: {
        reference: string;
    };
    type: 'confluenceInlineComment';
}
export declare const confluenceInlineComment: MarkSpec;
