import { ServerError, HttpResponse } from 'breeze-client';
export declare class ODataError extends Error implements ServerError {
    httpResponse: HttpResponse;
    message: string;
    name: string;
    stack?: string;
    body: any;
    statusText: string;
    status: number;
    url: string;
    constructor(message?: string);
    toString(): string;
}
