/// import * as https from "https"; export declare class RestAPI { private _method; private _apiURL; private _payload; httpsAgent(): https.Agent; get(_apiURL: string): Promise | undefined>; post(): Promise | undefined>; put(_apiURL: string): Promise | undefined>; executeCall(_method: string, _apiURL: string, _payload?: object): Promise | undefined> | undefined; }