import type { Hono } from "hono"; /** * Register inspector-specific routes (proxy, chat, config, widget rendering) */ export type InspectorRoutesConfig = { autoConnectUrl?: string | null; /** HTTP port the app listens on (embedded inspector); required for tunnel start */ serverPort?: number; }; export declare function registerInspectorRoutes(app: Hono, config?: InspectorRoutesConfig): void; //# sourceMappingURL=shared-routes.d.ts.map