import { CallHandler, ExecutionContext, NestInterceptor } from '@nestjs/common'; import { Observable } from 'rxjs'; import { NestjsPinoLoggerConfiguration } from './nestjs-pino.configuration'; export declare class LoggerRequestIdInterceptor implements NestInterceptor { private readonly nestjsPinoLoggerConfiguration; constructor(nestjsPinoLoggerConfiguration: NestjsPinoLoggerConfiguration); intercept(context: ExecutionContext, next: CallHandler): Observable | Promise>; }