export declare class QueryCache { private readonly storage; constructor(); /** * @returns Returns the result of executing a function (Either call a function or take a value from the cache) */ cache(key: any[], fn: Function): any; } //# sourceMappingURL=QueryCache.d.ts.map