export interface CacheClient { get(key: string): Promise; set(key: string, value: string): Promise; delete(key: string): Promise; isAvailable(): boolean; } //# sourceMappingURL=CacheClient.d.ts.map