import { ISecretClient } from './IsecretClient'; import { ISecretEntry } from './IsecretEntry'; export declare class VaultSecretClient implements ISecretClient { private path; private fs; constructor(fs?: any); readSecret(key: string): Promise; updateSecret(updatedSecret: ISecretEntry): Promise; }