#!/usr/bin/env node interface APIGatewayV2Event { requestContext: { http: { method: string; path: string; sourceIp: string; }; requestId: string; }; headers: Record; body?: string; isBase64Encoded?: boolean; } interface APIGatewayV2Result { statusCode: number; headers: Record; body: string; isBase64Encoded?: boolean; } export declare function handler(event: APIGatewayV2Event): Promise; export {};