import type { APIGatewayProxyEventV2, APIGatewayProxyResult } from 'aws-lambda'; import type { Handler } from '../../handler.js'; import type { StrBodyRec } from '../index.js'; import type { RequestW } from '../RequestW.js'; import type { ResponseW } from '../ResponseW.js'; export declare const TAG = "apiGatewayProxyEventV2Adapter"; export type WithApiGatewayProxyEventRaw = { readonly apiGatewayProxyEventV2Raw: APIGatewayProxyEventV2; }; export declare function adaptFromApiGatewayProxyEventV2(request: APIGatewayProxyEventV2): RequestW; export declare function adaptToApiGatewayProxyResult(responseW: ResponseW): APIGatewayProxyResult; export declare const middleware: (_params?: never) => (wrapped: Handler, ResponseW, E, R>) => Handler; //# sourceMappingURL=apiGatewayProxyEventV2Adapter.d.ts.map