//#region src/clients/base.client.d.ts type BaseClientOptions = { readonly baseUrl: string; readonly headers?: Record; readonly timeout?: number; }; declare class BaseClient { private readonly baseUrl; private readonly headers; private readonly timeout; constructor(options: BaseClientOptions); get(path: string, params?: Record): Promise; post(path: string, body?: unknown, params?: Record): Promise; getBinary(path: string, params?: Record): Promise<{ data: Uint8Array; contentType: string; }>; private buildUrl; private request; private requestBinary; } //#endregion export { BaseClient, BaseClientOptions }; //# sourceMappingURL=base.client.d.ts.map