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<ISecretEntry>;
    updateSecret(updatedSecret: ISecretEntry): Promise<ISecretEntry>;
}
