import { IProxyRequest, ProxyRequest } from './proxy-request'; export interface IProxyRequestFactory { create(event: AWSLambda.APIGatewayProxyEvent): IProxyRequest; } export declare class ProxyRequestFactory implements IProxyRequestFactory { create(event: AWSLambda.APIGatewayProxyEvent): ProxyRequest; }