export declare const MCP_HTTP_PORT = 8853; export declare const MCP_NAME = "configs"; export declare function isHttpMode(argv: string[]): boolean; export declare function isStdioMode(argv: string[]): boolean; export declare function resolveHttpPort(argv: string[]): number; export declare function healthPayload(): { status: string; name: string; }; export declare function handleMcpHttpRequest(req: Request): Promise; export declare function startMcpHttpServer(port: number): Promise<{ port: number; stop: () => void; }>; export declare function mountMcpHttpRoutes(app: { get: (path: string, handler: (c: { json: (body: unknown) => Response; req: { raw: Request; }; }) => Response | Promise) => void; all: (path: string, handler: (c: { req: { raw: Request; }; }) => Response | Promise) => void; }): void; //# sourceMappingURL=http.d.ts.map