import type { GraphResult } from '../types.js'; /** * Generates all permutations of decision outcomes. * For n decisions, generates 2^n permutations. */ export declare function generateDecisionPermutations(decisionCount: number): boolean[][]; /** * Builds a GraphResult from the paths collected in graphContext. */ export declare function buildGraphFromPaths(): GraphResult; //# sourceMappingURL=buildGraph.d.ts.map