/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { GraphDescriptor } from "@breadboard-ai/types"; import { OrchestrationPlan } from "./types.js"; export { createPlan }; /** * Creates an execution plan from the provided GraphDescription. * The graph is guaranteed to be condensed (no cycles), and each * strongly connected component is represented with a single node * that has a "folded" tag. */ declare function createPlan(graph: GraphDescriptor): OrchestrationPlan; //# sourceMappingURL=create-plan.d.ts.map