#!/usr/bin/env node /** * Simple MCP-UI HTTP Server for Code Auditor * * This provides HTTP endpoints that return UI resources for interactive dashboards * while reusing all the existing audit tool logic. */ import express from 'express'; declare const app: express.Application; /** * Start the MCP-UI HTTP server */ export declare function startMcpUIServer(): void; declare global { var auditSessions: Map; var codeMapSessions: Map; } export { app }; //# sourceMappingURL=mcp-ui-simple.d.ts.map