import { blockCard_node } from "./blockCard_node"; import { paragraph_with_no_marks_node } from "./paragraph_with_no_marks_node"; import { bulletList_node } from "./bulletList_node"; import { orderedList_node } from "./orderedList_node"; import { heading_with_no_marks_node } from "./heading_with_no_marks_node"; export interface panel_node { type: "panel"; attrs: { panelType: "info" | "note" | "tip" | "warning" | "error" | "success"; }; content: Array; } //# sourceMappingURL=panel_node.d.ts.map