import { StrongCache, WeakCache } from "@wry/caches"; /** * @internal * A version of WeakCache that will auto-schedule a cleanup of the cache when * a new item is added and the cache reached maximum size. * Throttled to once per 100ms. * * @privateRemarks * Should be used throughout the rest of the codebase instead of WeakCache, * with the notable exception of usage in `wrap` from `optimism` - that one * already handles cleanup and should remain a `WeakCache`. * * @deprecated This is an internal API and should not be used directly. This can be removed or changed at any time. */ export declare const AutoCleanedWeakCache: typeof WeakCache; /** * @internal * * @deprecated This is an internal API and should not be used directly. This can be removed or changed at any time. */ export type AutoCleanedWeakCache = WeakCache; /** * @internal * A version of StrongCache that will auto-schedule a cleanup of the cache when * a new item is added and the cache reached maximum size. * Throttled to once per 100ms. * * @privateRemarks * Should be used throughout the rest of the codebase instead of StrongCache, * with the notable exception of usage in `wrap` from `optimism` - that one * already handles cleanup and should remain a `StrongCache`. * * @deprecated This is an internal API and should not be used directly. This can be removed or changed at any time. */ export declare const AutoCleanedStrongCache: typeof StrongCache; /** * @internal * * @deprecated This is an internal API and should not be used directly. This can be removed or changed at any time. */ export type AutoCleanedStrongCache = StrongCache; //# sourceMappingURL=caches.d.ts.map