import { type Cache } from './index.js'; type GCSCacheOptions = { bucket: string; prefix?: string; projectId?: string; keyFilename?: string; apiEndpoint?: string; }; declare function gcsCache(options: GCSCacheOptions): Cache; export { gcsCache };