export declare const contextCacheSymbol: unique symbol; export declare function initContextCache(): { [contextCacheSymbol]: {}; }; export declare type ContextCache = (context: C, ...args: Args) => T; export declare function createContextCache(create: (context: C, ...args: Args) => T): ContextCache; //# sourceMappingURL=context-cache.d.ts.map