export declare class HttpUtils { private readonly baseUrl; private readonly version; private readonly clientKey; constructor(baseUrl: string, version: string, clientKey: string); private getPath; private fetchWithRetry; post(path: string, data: T, retries?: number): Promise; patch(path: string, data: T, retries?: number): Promise; }