import EventEmitter3 from "eventemitter3"; import { EventEmitterValidEventTypes } from "./types/EventEmitter.types"; /** * Typed SDK event bus used throughout the editor/runtime. * * The class itself is intentionally thin; most of the public contract lives in `EventsEnum` * and `EventPayloadMap`, which together define the allowed event names and payload shapes. */ export declare class EventEmitter extends EventEmitter3 { }