import type { SecretMap, SecretsVault } from '../types.js'; /** * Provides an in-memory implementation of the SecretsVault interface */ export declare class InMemorySecretsVault implements SecretsVault { private secretMap; constructor(secretMap: SecretMap); deleteSecret(key: string): Promise; getSecret(key: string): Promise; getSecrets(keys: string[]): Promise; setSecret(key: string, value: string): Promise; setSecrets(secretMap: SecretMap): Promise; getSecretKeys(): Promise; } //# sourceMappingURL=in-memory.d.ts.map