import { EventBus } from '../events/bus'; import type { EventMode } from '../events/schema'; import type { StateStore } from '../state/store'; export type EventSystem = { bus: EventBus; mode: EventMode; }; export declare function initEvents(state: StateStore, mode: EventMode): EventSystem;