import { RestClient, Session, IImperativeError } from "@zowe/imperative";
export declare class FMPRestClient extends RestClient {
    static putJSONExpectJSON<T extends object>(session: Session, resource: string, payload: any): Promise<T>;
    static postJSONExpectJSON<T extends object>(session: Session, resource: string, payload: any): Promise<T>;
    protected processError(original: IImperativeError): IImperativeError;
}
