import { memoryCache } from './memory.js'; import { s3Cache } from './s3.js'; import { gcsCache } from './gcs.js'; import { fileCache } from './file.js'; type Value = Buffer; type Cache = { name: string; get: (key: string) => Promise; set: (key: string, value: Value) => Promise; }; declare const noneCache: () => Cache; export { noneCache, memoryCache, s3Cache, gcsCache, fileCache, type Value, type Cache };