import * as hono from 'hono'; /** * Cache middleware * * @param seconds - The number of seconds to cache */ declare function cache(seconds: number): hono.MiddlewareHandler; export { cache };