import type { CodeBlockWithMarksDefinition as CodeBlockWithMarks } from './code-block'; import type { ExpandRootOnlyDefinition as ExpandRootOnly } from './expand'; import type { LayoutSectionDefinition as LayoutSection } from './layout-section'; import type { ParagraphWithIndentationDefinition } from './paragraph'; import type { BlockContent } from './types/block-content'; import type { MultiBodiedExtensionDefinition as MultiBodiedExtension } from './multi-bodied-extension'; import type { SyncBlockDefinition as SyncBlock } from './sync-block'; import type { BodiedSyncBlockDefinition as BodiedSyncBlock } from './bodied-sync-block'; import type { NodeSpec } from '@atlaskit/editor-prosemirror/model'; /** * @name doc_node */ export interface DocNode { /** // eslint-disable-next-line eslint-plugin-jsdoc/check-tag-names * @allowUnsupportedBlock true */ content: Array; type: 'doc'; version: 1; } export declare const doc: NodeSpec;