/** * Node HTTP convenience starter. * * Dynamically imports `@hono/node-server` so the SDK stays runtime-agnostic * — only Node consumers actually pull in the dep. For Bun / Deno / * Cloudflare, consumers go through `server.app.fetch` directly. */ import type { Hono } from 'hono'; import type { RemoteServerHandle } from './handle.js'; export declare function startNodeServer(app: Hono, port?: number): Promise; //# sourceMappingURL=start.d.ts.map