import EventEmitter from './MicroEmitter'; import HttpMethod from './RouterMethod'; import Matcher from 'route-parser'; declare class EmitterHub { constructor(method: HttpMethod, route: string); id: string; method: HttpMethod; route: string; matcher: Matcher; sender: EventEmitter; receiver: EventEmitter; } export default EmitterHub;