export declare const EVENT_HANDLER: unique symbol;
export interface EventHandler {
    handle(event: any): Promise<void>;
}
