import { CallHandler, ExecutionContext, NestInterceptor } from "@nestjs/common"; export declare class RedisCacheInterceptor implements NestInterceptor { private readonly cacheManager; private allowedMethods; ttl: number; intercept(context: ExecutionContext, next: CallHandler): Promise>; protected trackBy(context: ExecutionContext): string | undefined; isRequestCacheable(context: ExecutionContext): boolean; }