import { Params, MultiValueParams, Event as LambdaEvent, Context as LambdaContext, Response as LambdaResponse } from 'lambda-types'; export declare type Headers = Params; export declare type MultiValueHeaders = MultiValueParams; export declare type QueryStringParameters = Params; export declare type MultiValueQueryStringParameters = MultiValueParams; export declare type PathParameters = Params; export declare type Event = Omit; export declare type Context = LambdaContext; export declare type Response = Omit & { statusCode?: number; html?: string; json?: object; xml?: string; }; export declare type Handler = (event: Event, context: Context) => Promise | Response | string;