declare class GlobalCache { private static readonly instance; private readonly cache; private constructor(); static getInstance(): GlobalCache; set(key: string, value: T): void; get(key: string): T | undefined; has(key: string): boolean; delete(key: string): void; clear(): void; } declare const globalCache: GlobalCache; export { globalCache };