import { m as createSyntaxFactory } from "./index-D9P9itFa-C0Jtggx-.js";
import { a as Hono$1, i as Schema, n as BlankSchema, o as HonoOptions, r as Env, t as BlankEnv } from "./context-By_CckoX.js";

//#region ../../node_modules/hono/dist/types/preset/tiny.d.ts

declare class Hono<E extends Env = BlankEnv, S extends Schema = BlankSchema, BasePath extends string = "/"> extends Hono$1<E, S, BasePath> {
  constructor(options?: HonoOptions<E>);
}
//#endregion
//#region private/server/worker/index.d.ts
type Bindings = {
  ASSETS: {
    fetch: typeof fetch;
  };
};
type Variables = {
  client: ReturnType<typeof createSyntaxFactory>;
};
declare const app: Hono<{
  Bindings: Bindings;
  Variables: Variables;
}, BlankSchema, "/">;
//#endregion
export { app as t };