export declare class RequestError {
    _responseJSON: any;
    _responseText: string;
    _error: string;
    constructor(responseText: string, error: string);
    get responseText(): any;
    get responseJSON(): any;
    get error(): string;
}
