/** * @license * Copyright 2023 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { ClientRunResult } from "@breadboard-ai/types"; import { HarnessRunResult, Kit, NodeHandler, RunConfig, SecretResult } from "@breadboard-ai/types"; export declare const configureSecretAsking: (interactiveSecrets: RunConfig["interactiveSecrets"], existingKits: Kit[], next: (data: HarnessRunResult) => Promise) => Kit[]; export declare const createSecretAskingKit: (next: (result: ClientRunResult) => Promise, fallback?: NodeHandler[]) => Kit; //# sourceMappingURL=secrets.d.ts.map