import type { APIGatewayProxyEvent, APIGatewayProxyResultV2 } from 'aws-lambda';
type HandlerFn = (event: APIGatewayProxyEvent) => Promise<APIGatewayProxyResultV2>;
export declare const wrapHandler: (handler: HandlerFn) => HandlerFn;
export {};
