/** * Naive implementation of a multi-key cache. */ export default function createMultiKeyCache(): { get: (keys: any) => any; set: (keys: any, value: any) => void; remove: (keys: any) => void; }; //# sourceMappingURL=createMultiKeyCache.d.ts.map