import { text_node } from "./text_node"; export interface codeBlock_node { type: "codeBlock"; content?: Array; marks?: Array; attrs?: { language?: string; }; } //# sourceMappingURL=codeBlock_node.d.ts.map