import type { ServerSentEvent } from "@oh-my-pi/pi-utils"; import type { RawSseEvent } from "../types"; type RawSseObserver = (event: RawSseEvent) => void; export declare function notifyRawSseEvent(observer: RawSseObserver | undefined, event: ServerSentEvent | RawSseEvent): void; export {};