import http from 'http'; export declare function replayThreadStreamEventsAfter(threadId: string, after: number): Array<{ id: number; event: object; }>; export declare function addThreadStreamClient(threadId: string, res: http.ServerResponse): void; export declare function removeThreadStreamClient(threadId: string, res: http.ServerResponse): void; export declare function broadcastToThread(threadId: string, event: object, options?: { id?: number | string; }): void; export declare function writeThreadStreamEvent(res: http.ServerResponse, event: object, options?: { id?: number | string; }): boolean; //# sourceMappingURL=thread-stream.d.ts.map