import { EventMap, Emitter } from 'strict-event-emitter'; /** * Pipes all emitted events from one emitter to another. */ declare function pipeEvents(source: Emitter, destination: Emitter): void; export { pipeEvents };