import type { Collector, TelescopeStorage } from '../types.js'; /** * Records cache operations by wrapping the CacheRegistry adapter methods. * Intercepts get/set/forget/flush and records hit/miss/set/forget ops. */ export declare class CacheCollector implements Collector { private readonly storage; readonly name = "Cache Collector"; readonly type: "cache"; constructor(storage: TelescopeStorage); register(): Promise; } //# sourceMappingURL=cache.d.ts.map