export declare function httpGet(url: string): Promise<{ err: any; getData: any; }>; export declare function httpPost(url: string, jsonData: object): Promise<{ err: any | null; }>; export declare function httpPut(url: string, jsonData: object): Promise<{ err: any | null; }>; export declare function httpPatch(url: string, jsonData: object): Promise<{ err: any | null; }>; export declare function httpDelete(url: string): Promise<{ err: any; }>; //# sourceMappingURL=REST.d.ts.map