import { Hono } from "hono"; import { HonoEnv } from "../api/types"; import { LoadedFunction } from "./function-loader"; /** * Mount all loaded function routes under a single Hono router. * * Each function is mounted at `/`, preserving * whatever HTTP methods and middleware the Hono sub-app defines. */ export declare function createFunctionRoutes(functions: LoadedFunction[]): Hono;