import { OnApplicationBootstrap } from '@nestjs/common'; import { ExplorerService } from '../services'; import { EventService } from './event.services'; import { EventBus } from './event-bus'; export declare class EventModule implements OnApplicationBootstrap { private readonly explorerService; private readonly eventBus; private readonly eventService; private readonly logger; constructor(explorerService: ExplorerService, eventBus: EventBus, eventService: EventService); onApplicationBootstrap(): void; }