import { IDictionary } from './common'; import { HTTPResponse } from './http'; export interface LambdaEvent { body: string; connection: { remoteAddress?: string; socket?: { remoteAddress?: string; }; }; headers: IDictionary; methodArn: string; queryStringParameters: IDictionary; pathParameters: IDictionary; } export interface LambdaContext { } export declare type LambdaHandler = (event: LambdaEvent, context: LambdaContext) => Promise;