import { type Cache } from './index.js'; type MemoryCacheOptions = { ttl: number; maxItemCount: number; }; declare const memoryCache: (options: MemoryCacheOptions) => Cache; export { memoryCache };