/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { HarnessRunResult, Kit, RunConfig } from "@breadboard-ai/types"; export { run, configureKits }; declare function configureKits(config: RunConfig, next: (data: HarnessRunResult) => Promise): Promise; declare function run(config: RunConfig): AsyncGenerator; //# sourceMappingURL=run.d.ts.map