export = BaseGlobalCache; /** * This is global */ declare class BaseGlobalCache { static VALID_TIME: number; /** * @param {string} namespace */ constructor(namespace: string); /** * Created cache namespace, should be the same in different instances * * @type {Map} */ globalCache: Map; /** * @private * @returns {Map} */ private createNamespace; get isExpired(): boolean; }