///
export declare const ApplicationJson = "application/json";
export declare class LambdaHttpResponse {
static isHttpResponse(t: unknown): t is LambdaHttpResponse;
/**
* Http status code
*/
status: number;
/**
* Text description for the status code
*/
statusDescription: string;
/**
* Raw body object
*/
private body;
headers: Map;
constructor(status: number, description: string, headers?: Record);
header(key: string): string | number | boolean | undefined;
header(key: string, value: string | number | boolean): void;
get isBase64Encoded(): boolean;
json(obj: Record): void;
buffer(buf: Buffer | string, contentType?: string): void;
getBody(): string;
}
//# sourceMappingURL=lambda.response.d.ts.map