import { Hono } from 'hono';
import { handle } from 'hono/aws-lambda';

declare function createAwsLambdaHonoApp(appFunction: (app: Hono) => Hono): ReturnType<typeof handle>;

export { createAwsLambdaHonoApp };
