export declare class HttpResponse {
    readonly statusCode: number;
    readonly body: any;
    protected readonly includeCorsHeaders: boolean;
    private _headers;
    private _corsHeaders;
    get headers(): {
        [name: string]: string;
    };
    protected get corsHeaders(): {
        [name: string]: string;
    };
    protected get defaultCorsHeaders(): {
        [name: string]: string;
    };
    constructor(statusCode: number, body?: any, headers?: {
        [name: string]: string;
    }, includeCorsHeaders?: boolean, corsHeaders?: {
        [name: string]: string;
    } | null);
}
