export declare class EventEmitter { private events; on(event: string, listener: Function): void; emit(event: string, ...args: any[]): void; off(event: string, listener: Function): void; } //# sourceMappingURL=events.d.ts.map