/** * EventSource wrapper that captures SSE events and sends them to the extension */ import type { HelperConfig } from './types'; /** * Create a wrapped EventSource that captures events */ export declare function createEventSourceWrapper(config: Required): typeof EventSource; /** * Install the EventSource wrapper globally */ export declare function installEventSourceWrapper(config: Required): void; /** * Restore the original EventSource */ export declare function uninstallEventSourceWrapper(): void; //# sourceMappingURL=eventsource-wrapper.d.ts.map