import type { KeyringAdapter } from '../../service/facade.js'; export declare class EnvKeyring implements KeyringAdapter { private readonly envPrefix; private readonly memoryFallback; constructor(envPrefix?: string); private envKey; getSecret(key: string): Promise; setSecret(key: string, secret: string): Promise; setSecretIfAbsent(key: string, secret: string): Promise; deleteSecret(key: string): Promise; } //# sourceMappingURL=env-keyring.d.ts.map