export declare class XrayErrorResponse {
    _response: string;
    statusCode?: string;
    body?: string;
    constructor(response: any);
    toString(): string;
}
export default XrayErrorResponse;
