export interface IProxyRequest { readonly body: { [key: string]: unknown; }; readonly headers: { [key: string]: string; }; readonly method: string; readonly params: { [key: string]: string; }; readonly path: string; readonly query: { [key: string]: string; }; } export declare class ProxyRequest implements IProxyRequest { readonly body: { [key: string]: unknown; }; readonly headers: { [key: string]: string; }; readonly method: string; readonly params: { [key: string]: string; }; readonly path: string; readonly query: { [key: string]: string; }; constructor(event: AWSLambda.APIGatewayProxyEvent); private parseEventBody; }