import type { APIGatewayProxyEvent, APIGatewayProxyEventV2, APIGatewayProxyResult, APIGatewayProxyResultV2, Context } from "aws-lambda"; import "#internal/dittp/virtual/polyfill"; type Event = Omit | Omit; type Result = Exclude & { statusCode: number; }; export declare const handler: (event: Event, context: Context) => Promise; export {};