export interface IProxyResponse extends AWSLambda.APIGatewayProxyResult { readonly body: string; readonly headers: { [key: string]: string; }; readonly statusCode: StatusCode; } export declare class ProxyResponse implements IProxyResponse { readonly body: string; readonly statusCode: StatusCode; readonly headers: { [key: string]: string; }; constructor(data: object | null, statusCode: StatusCode); } export declare const enum StatusCode { SUCCESS = 200, CREATED = 201, BAD_REQUEST = 400, NOT_FOUND = 404, INTERNAL_ERROR = 500 }