export declare class DomoException extends Error {
    statusCode: number;
    url: string;
    error: string;
    proxy: string;
    constructor(err: {
        body?: {
            message?: string;
        };
        message?: string;
        statusCode?: number;
    }, url: string);
}
//# sourceMappingURL=errors.d.ts.map