import { ObservableLike } from "@reactive-js/observable"; export declare const createEventSource: (url: string | URL, options?: EventSourceInit & { events?: readonly string[] | undefined; }) => ObservableLike<{ id: string; type: string; data: string; }>; //# sourceMappingURL=eventSource.d.ts.map