import { Observable } from 'rxjs'; import { ICorrelationIdService } from '../../../../infrastructure/correlation-ids'; import { NestInterceptor, ExecutionContext, CallHandler } from '@nestjs/common'; export declare class CorrelationIdInterceptor implements NestInterceptor { private readonly correlationIdService; constructor(correlationIdService: ICorrelationIdService); intercept(context: ExecutionContext, next: CallHandler): Observable | Promise>; }