/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { HarnessRunResult } from "@breadboard-ai/types"; import { AbstractRunner } from "./abstract-runner.js"; export { LocalRunner }; declare class LocalRunner extends AbstractRunner { protected getGenerator(): AsyncGenerator; } //# sourceMappingURL=local-runner.d.ts.map