interface APIGatewayEvent { httpMethod?: string; path?: string; queryStringParameters?: Record | null; requestContext?: { http?: { method: string; path: string; }; stage?: string; }; headers: Record; body?: string; isBase64Encoded?: boolean; } interface APIGatewayResult { statusCode: number; headers: Record; body: string; isBase64Encoded: boolean; } export declare function handler(event: APIGatewayEvent): Promise; export {}; //# sourceMappingURL=lambda.d.ts.map