import TypedEmitter from 'typed-emitter'; export declare type Unsubscriber = () => void; declare const Emitter_base: new () => Omit, "on">; /** * This class wraps TypedEmitter, which is a typescript overlay on * the standard EventEmitter class; typings only, no code */ export declare class Emitter extends Emitter_base { on(event: E, listener: T[E]): Unsubscriber; } export {};