import { PlatformEvent } from "./PlatformEvent.js";
export interface IEventListener<TEvent extends PlatformEvent> {
    onEvent(e: TEvent): void;
}
