/** * Detect whether an app object is Express or Hono. * * Express: has set(), engine(), and lazyrouter() or _router * Hono: has fetch() method + basePath property, no Express set/engine */ export declare function isExpressApp(app: any): boolean; export declare function isHonoApp(app: any): boolean; //# sourceMappingURL=detect.d.ts.map