import { type Cache } from './index.js'; type fileCacheOptions = { dir: string; ttl: number; }; declare const fileCache: (options: fileCacheOptions) => Cache; export { fileCache };