import * as http from "node:http"; import type { createFlowTool } from "./flow-tool.js"; import type { ToolContext } from "../types.js"; type FlowTool = ReturnType; export interface HttpServerOptions { host?: string; port?: number; token?: string; } export declare function startFlowHttpServer(flowTool: FlowTool, ctx: ToolContext, options?: HttpServerOptions): { server: http.Server; port: number; host: string; token: string; }; export {};