import { CallHandler, ExecutionContext, NestInterceptor } from '@nestjs/common'; import { Observable } from 'rxjs'; import { Cache } from 'cache-manager'; import { HttpAdapterHost } from '@nestjs/core'; export declare class CompressCacheInterceptor implements NestInterceptor { private cacheManager; private readonly httpAdapterHost; constructor(cacheManager: Cache, httpAdapterHost: HttpAdapterHost); intercept(context: ExecutionContext, next: CallHandler): Promise>; }