import { EventMap, Emitter } from 'strict-event-emitter';

/**
 * Pipes all emitted events from one emitter to another.
 */
declare function pipeEvents<Events extends EventMap>(source: Emitter<Events>, destination: Emitter<Events>): void;

export { pipeEvents };
