/** * @module * Dev Helper for Hono. */ import type { Hono } from '../../hono'; import type { Env } from '../../types'; interface ShowRoutesOptions { verbose?: boolean; colorize?: boolean; } interface RouteData { path: string; method: string; name: string; isMiddleware: boolean; } export declare const inspectRoutes: (hono: Hono) => RouteData[]; export declare const showRoutes: (hono: Hono, opts?: ShowRoutesOptions) => void; export declare const getRouterName: (app: Hono) => string; export {};