export interface HttpClientOptions { baseUrl?: string; sdkVersion?: string; credentials?: RequestCredentials; } export declare class HttpClient { publishableKey: string; private readonly baseUrl; private readonly sdkVersion; private readonly fetchOptions; constructor(publishableKey: string, opts?: HttpClientOptions); getUrl(path: string): URL; get({ path, params, timeoutMs, }: { path: string; params?: URLSearchParams; timeoutMs?: number; }): ReturnType; post({ path, body, }: { host?: string; path: string; body: any; }): ReturnType; } //# sourceMappingURL=httpClient.d.ts.map