import { Exception } from "@aurigma/design-atoms-model/Exception";
import { IResponse } from "../Utils/Ajax";
export declare class AjaxResponseException extends Exception {
    ajaxResponse: IResponse;
    name: string;
    constructor(ajaxResponse: IResponse);
    toJSON(): {
        name: string;
        innerException: Error | Exception;
        message: string;
    };
}
