export default class Event { private events; constructor(); add(fn: (evt: T) => void): () => boolean; run(evt: T): boolean; }