//#region src/middleware.d.ts /** * Cache middleware * * @param seconds - The number of seconds to cache */ declare function cache(seconds: number): import("hono").MiddlewareHandler; //#endregion export { cache };