import type { WebhookHandler } from '../handler.js'; interface HonoContextLike { req: { raw: Request; }; } export type HonoHandler = (c: HonoContextLike) => Promise; /** * `app.post('/webhook', honoAdapter(tg.webhookHandler()))` */ export declare function honoAdapter(handler: WebhookHandler): HonoHandler; export {}; //# sourceMappingURL=hono.d.ts.map