/** * kivo graph build — Build knowledge graph from existing entries and persist to DB. * * Loads all active entries, builds in-memory graph with tag-based co-occurrence * edges, then persists nodes and edges to SQLite tables (graph_nodes, graph_edges). * Also runs GraphInsightEngine and stores insights. */ export interface GraphBuildOptions { cwd?: string; json?: boolean; } export declare function runGraphBuild(options?: GraphBuildOptions): Promise; //# sourceMappingURL=graph-build.d.ts.map