/** * @license * Copyright 2023 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { GraphRepresentation, TraversalResult } from "@breadboard-ai/types"; export declare class TraversalMachineIterator implements AsyncIterator { #private; graph: GraphRepresentation; constructor(graph: GraphRepresentation, result: TraversalResult); next(): Promise>; } //# sourceMappingURL=iterator.d.ts.map