import { codeBlock_with_no_marks_node } from "./codeBlock_with_no_marks_node"; import { codeBlock_with_marks_node } from "./codeBlock_with_marks_node"; import { blockCard_node } from "./blockCard_node"; import { paragraph_with_no_marks_node } from "./paragraph_with_no_marks_node"; import { paragraph_with_alignment_node } from "./paragraph_with_alignment_node"; import { paragraph_with_indentation_node } from "./paragraph_with_indentation_node"; import { bulletList_node } from "./bulletList_node"; import { mediaSingle_node } from "./mediaSingle_node"; import { orderedList_node } from "./orderedList_node"; import { heading_with_no_marks_node } from "./heading_with_no_marks_node"; import { heading_with_alignment_node } from "./heading_with_alignment_node"; import { heading_with_indentation_node } from "./heading_with_indentation_node"; import { panel_node } from "./panel_node"; import { blockquote_node } from "./blockquote_node"; import { rule_node } from "./rule_node"; import { mediaGroup_node } from "./mediaGroup_node"; import { decisionList_node } from "./decisionList_node"; import { taskList_node } from "./taskList_node"; import { extension_node } from "./extension_node"; import { table_node } from "./table_node"; import { expand_with_no_mark_node } from "./expand_with_no_mark_node"; import { expand_with_breakout_mark_node } from "./expand_with_breakout_mark_node"; import { bodiedExtension_node } from "./bodiedExtension_node"; import { layoutSection_node } from "./layoutSection_node"; export interface doc_node { version: 1; type: "doc"; content: Array; } //# sourceMappingURL=doc_node.d.ts.map