/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { HarnessRunResult, NodeIdentifier, RunConfig } from "@breadboard-ai/types"; import { AbstractRunner } from "./abstract-runner.js"; export { PlanRunner }; declare class PlanRunner extends AbstractRunner { #private; readonly interactiveMode: boolean; constructor(config: RunConfig, interactiveMode: boolean); next(): Promise; continue(): Promise; rerun(id?: NodeIdentifier | null): Promise; state(): Promise | undefined>; protected getGenerator(): AsyncGenerator; } //# sourceMappingURL=plan-runner.d.ts.map