import { OnModuleInit } from '@nestjs/common'; import { AnalyzerService } from './analyzer.service.js'; import { LayoutThrashDetector } from './detectors/layout-thrash.detector.js'; import { GPUStallDetector } from './detectors/gpu-stall.detector.js'; import { LongTaskDetector } from './detectors/long-task.detector.js'; import { HeavyPaintDetector } from './detectors/heavy-paint.detector.js'; export declare class AnalyzerModule implements OnModuleInit { private readonly analyzerService; private readonly layoutThrashDetector; private readonly gpuStallDetector; private readonly longTaskDetector; private readonly heavyPaintDetector; constructor(analyzerService: AnalyzerService, layoutThrashDetector: LayoutThrashDetector, gpuStallDetector: GPUStallDetector, longTaskDetector: LongTaskDetector, heavyPaintDetector: HeavyPaintDetector); onModuleInit(): void; }