import { HttpResponse } from './http-response.class';
export declare class InternalServerErrorResponse extends HttpResponse {
    constructor(body?: any, headers?: {
        [name: string]: string;
    }, includeCorsHeaders?: boolean, corsHeaders?: {
        [name: string]: string;
    } | null);
}
