import * as hono_types from 'hono/types'; import { BlankEnv } from 'hono/types'; import { Env, Hono } from 'hono'; import { H as HonoServerOptionsBase, W as WithoutWebsocket } from '../helpers-BXdVojwF.js'; export { c as createGetLoadContext } from '../helpers-BXdVojwF.js'; import 'hono/ws'; import 'react-router'; interface HonoCloudflareOptions extends Omit, "port"> { } type HonoServerOptions = HonoCloudflareOptions & Omit, "useWebSocket">; /** * Create a Hono server * * @param config {@link HonoServerOptions} - The configuration options for the server */ declare function createHonoServer(options?: HonoServerOptions): Promise>; export { type HonoServerOptions, createHonoServer };