/// import { Klass } from '../core/Klass'; import { EventEmitter } from 'events'; export declare class EventListenerRegistry { private static _listeners; static registerListeners(klass: Klass): void; static registerEventListener(klass: Klass, method: string, eventName: string, emitterKlass: new (...args: any[]) => EventEmitter, handler: (...args: any[]) => any): void; }