export type GraphNodeFrontmatter = { title: string; description: string; parents: string[]; createdAt: number; updatedAt: number; }; export type GraphNode = { id: string; frontmatter: GraphNodeFrontmatter; content: string; refs: string[]; }; export type GraphTree = { root: GraphNode; children: Map; }; export declare const GRAPH_ROOT_NODE_ID = "__root__"; //# sourceMappingURL=graphTypes.d.ts.map