import { ICache } from '../../domain/services/caching/interfaces'; /** * Cache configuration factory */ export declare class CacheConfigFactory { /** * Create cache config for development */ static development(): { cache: ICache; ttl: number; }; /** * Create cache config for production */ static production(): { cache: ICache; ttl: number; }; /** * Create cache config for high-performance scenarios */ static highPerformance(): { cache: ICache; ttl: number; }; } //# sourceMappingURL=CacheConfigFactory.d.ts.map