declare const EVENTS: {
    readonly HOST_COMPONENT_CONNECTED: "host-component-connected";
    readonly REQUEST_SESSION_TOKEN: "request-session-token";
};
type EventType = keyof typeof EVENTS;

export { EVENTS, type EventType };
