import { t as HonoServerOptions } from "./hono-server-3AgKYtTt.mjs";
import { Context as NetlifyContext } from "@netlify/types";

//#region src/presets/netlify/server.d.ts
type NetlifyEnv = {
  Bindings: {
    context: NetlifyContext;
  };
};
type HonoNetlifyServerOptions = HonoServerOptions<NetlifyEnv>;
declare const createHonoNetlifyServer: (options?: HonoNetlifyServerOptions) => Promise<(req: Request, context: NetlifyContext) => Response | Promise<Response>>;
//#endregion
export { HonoNetlifyServerOptions, type NetlifyContext, createHonoNetlifyServer };