import { type Cache } from './index.js'; type S3CacheOptions = { bucket: string; region: string; endpoint?: string; forcePathStyle?: boolean; }; declare function s3Cache(options: S3CacheOptions): Cache; export { s3Cache };