import type { SSEEvent } from "../client/types.js"; import type { StoreState } from "./types.js"; /** * Pure function: produces next state from current state + SSE event. * Returns same reference if no change (structural sharing). */ export declare function reduceEvent(state: StoreState, sseEvent: SSEEvent): StoreState; //# sourceMappingURL=event-reducer.d.ts.map