import { type Env, Hono } from "hono"; import type { FetchFn, FiberplaneAppType } from "../../types.js"; /** * Creates the internal API router (except for the tracing routes) * * @NOTE - Tracing routes are not gated by a Fiberplane API key, * so those routes are set up in a different factory. */ export default function createApiRoutes(fetchFn: FetchFn, apiKey: string, fiberplaneServicesUrl: string): Hono, import("hono/types").BlankSchema, "/">;