import type { BreakoutMarkDefinition } from '../marks'; import type { ExpandDefinition as Expand } from './expand'; import type { PanelDefinition as Panel } from './panel'; import type { ParagraphDefinition as Paragraph, ParagraphWithMarksDefinition as ParagraphWithMarks } from './paragraph'; import type { BlockQuoteDefinition as Blockquote } from './blockquote'; import type { OrderedListDefinition as OrderedList, BulletListDefinition as BulletList } from './types/list'; import type { RuleDefinition as Rule } from './rule'; import type { HeadingDefinition as Heading, HeadingWithMarksDefinition as HeadingWithMarks } from './heading'; import type { CodeBlockDefinition as CodeBlock } from './code-block'; import type { MediaGroupDefinition as MediaGroup } from './media-group'; import type { MediaSingleDefinition as MediaSingle } from './media-single'; import type { DecisionListDefinition as DecisionList } from './decision-list'; import type { TaskListDefinition as TaskList } from './task-list'; import type { TableDefinition as Table } from './tableNodes'; import type { BlockCardDefinition as BlockCard } from './block-card'; import type { EmbedCardDefinition as EmbedCard } from './embed-card'; import type { LayoutSectionDefinition as LayoutSection } from './layout-section'; import type { NodeSpec } from '@atlaskit/editor-prosemirror/model'; export interface BodiedSyncBlockAttrs { /** * Required UUID attribute used for unique identification of the node */ localId: string; /** * The ID of the resource to be synchronized. */ resourceId: string; } /** * Represents a block node that is designed to be synchronized * with an external resource across different products. * @name bodiedSyncBlock_node */ export interface BodiedSyncBlockDefinition { attrs: BodiedSyncBlockAttrs; /** // eslint-disable-next-line eslint-plugin-jsdoc/check-tag-names * @minItems 1 // eslint-disable-next-line eslint-plugin-jsdoc/check-tag-names * @allowUnsupportedBlock true */ content: Array; marks?: Array; type: 'bodiedSyncBlock'; } export declare const bodiedSyncBlock: NodeSpec;