export declare function get(url: string, customHeaders?: {}): Promise; export declare function post(url: string, body: any, customHeaders?: {}): Promise; export declare function update(url: string, body: any, customHeaders?: {}): Promise; export declare function remove(url: string, customHeaders?: {}): Promise; export declare function put(url: string, body: any, customHeaders?: {}): Promise;