import { IHVConfig } from './types';
export declare function deepMerge(a: A, b: B): A & B;
export declare function deepMerge(a: A, b: B, c: C): A & B & C;
export declare function deepMerge(a: A, b: B, c: C, d: D): A & B & C & D;
export declare function resolveSecretPath(mount: string, namespace: string, key: string): string;
export declare function removeLeadingTrailingSlash(str: string): string;
export declare const DEFAULT_CONFIG: IHVConfig;
export declare function resolveConfig(options: Partial): IHVConfig;