import { EventInterface } from './event_interface'; export declare abstract class Event implements EventInterface { abstract name: string; static on(name: string, handler: any): void; static emit(e: Event): void; }