import { FetchParams, HermesResponse } from "../types"; export declare const hermes: { (url: string, { retries, retryInterval, timeout, avoidDuplicateRequests, statusCodeRetry, ...params }: FetchParams): Promise>; get(url: string, params: FetchParams): Promise>; post(url: string, body: any, params: FetchParams): Promise>; put(url: string, body: any, params: FetchParams): Promise>; patch(url: string, body: any, params: FetchParams): Promise>; delete(url: string, params: FetchParams): Promise>; }; //# sourceMappingURL=http-client.d.ts.map