import type { CacheAdapter } from './CacheAdapter.js'; import type { Dictionary } from '../typings.js'; /** Cache adapter backed by pre-generated static data, typically produced by the CLI cache:generate command. */ export declare class GeneratedCacheAdapter implements CacheAdapter { #private; constructor(options: { data: Dictionary; }); /** * @inheritDoc */ get(name: string): T | undefined; /** * @inheritDoc */ set(name: string, data: any, origin: string): void; /** * @inheritDoc */ remove(name: string): void; /** * @inheritDoc */ clear(): void; }