import type { CacheStore } from "./store"; type CacheDriver = "array" | "redis"; interface CreateCacheStoreOptions { driver: CacheDriver; ttlMs: number; maxEntries: number; redisUrl?: string; } declare function createCacheStore(options: CreateCacheStoreOptions): CacheStore; export type { CacheDriver, CreateCacheStoreOptions }; export { createCacheStore };