import { CallHandler, ExecutionContext, NestInterceptor } from '@nestjs/common'; import { Observable } from 'rxjs'; import { ProfilerService } from '../services/profiler.service'; import { MemoryService } from '../services/memory.service'; export declare class RequestProfilerInterceptor implements NestInterceptor { private profiler; private memoryService; private logger; constructor(profiler: ProfilerService, memoryService: MemoryService); intercept(context: ExecutionContext, next: CallHandler): Observable; private finishProfile; private sanitizeHeaders; }