import { RestClient, IImperativeError } from "@zowe/imperative";
/**
 * Sysview specific server implementations
 *
 * @export
 * @class SysviewRestClient
 * @extends {RestClient}
 */
export declare class SysviewRestClient extends RestClient {
    /**
     * Process an error encountered in the rest client
     * @param {IImperativeError} original - the original error automatically built by the abstract rest client
     * @returns {IImperativeError} - the processed error with details added
     * @memberof SysviewRestClient
     */
    processError(original: IImperativeError): IImperativeError;
}
