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