/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { InputValues } from "@google-labs/breadboard"; import { SettingsStore } from "@breadboard-ai/shared-ui/data/settings-store.js"; import * as BreadboardUI from "@breadboard-ai/shared-ui"; export declare class SecretsHelper { #private; constructor(settings: SettingsStore); setKeys(keys: string[]): void; restoreStoredSecretsForKeys(keys: string[]): void; static allKeysAreKnown(settings: SettingsStore, keys: string[]): InputValues | null; receiveSecrets(event: BreadboardUI.Events.StateEvent<"board.input">): void; hasAllSecrets(): boolean; getSecrets(): InputValues; } //# sourceMappingURL=secrets-helper.d.ts.map