import { type CorsOptions } from 'cors'; import { Logger } from '../types.js'; export interface StreamableHttpToSseArgs { streamableHttpUrl: string; port: number; host: string; baseUrl: string; ssePath: string; messagePath: string; logger: Logger; corsOrigin: CorsOptions['origin']; healthEndpoints: string[]; headers: Record; } export declare function streamableHttpToSse(args: StreamableHttpToSseArgs): Promise; //# sourceMappingURL=streamableHttpToSse.d.ts.map