import { HTTPResponseError } from "./errors"; export interface HttpResponse { statusCode: number; body: object; } export declare class HttpResponses { static message(statusCode: number, message: string): HttpResponse; static InternalServerError: HttpResponse; static Ok(body: object): HttpResponse; static fromResponseError(error: HTTPResponseError): HttpResponse; static toApiGatewayResponse(response: HttpResponse): { statusCode: number; body: string; headers: { [header: string]: string; }; }; } //# sourceMappingURL=httpResponse.d.ts.map