import type { ServerResponse } from 'node:http'; import type { FastifyReply } from 'fastify'; export declare function initSSE(reply: FastifyReply, extraHeaders?: Record): void; export declare function sendSSE(raw: ServerResponse, data: unknown): void; export interface EndSSEOptions { sentinel?: boolean; } export declare function endSSE(raw: ServerResponse, opts?: EndSSEOptions): void; //# sourceMappingURL=sse.d.ts.map