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