import { LocalCacheConfig } from './local-cache.interface'; /** this is the "global" config for theVault, default values are set here */ export declare const config: Required; /** * Update the global config, takes a config object as param * wil use above global, and merge in the pluginConfig and the param. * Param takes precedence * @param configUpdate */ export declare function updateConfig(configUpdate: LocalCacheConfig): void;