import { Auditor, SecretStore } from "anbaric-tsapi"; declare class InMemorySecretStore extends SecretStore { private secrets; private encryptionKey; constructor(encryptionKey?: Buffer, auditor?: Auditor); protected saveInternal(name: string, value: string): Promise; protected retrieveInternal(name: string): Promise; protected deleteInternal(name: string): Promise; protected listInternal(): Promise>; } export { InMemorySecretStore }; //# sourceMappingURL=InMemorySecretStore.d.ts.map