import type { GraphData } from "./graph-data.js"; export interface GraphDataBuilder { addNode(node: Record): number; addEdge(edge: Record): number; build(): GraphData; } //# sourceMappingURL=graph-data-builder.d.ts.map