import { CallHandler, ExecutionContext, NestInterceptor } from "@nestjs/common"; import { ContextService } from "../services/context/context.service"; import { LoggerService } from "../services/logger/logger.service"; export declare class ContextInterceptor implements NestInterceptor { readonly contextService: ContextService; private loggerService; constructor(contextService: ContextService, loggerService: LoggerService); intercept(context: ExecutionContext, next: CallHandler): import("rxjs").Observable; private getToken; }