import { IHttpClient } from "./IHttpClient"; export declare class HttpClient implements IHttpClient { serverUrl: string; headers: HeadersInit; signInUserId: string; constructor(serverUrl: string); get(relativePath: string, signal?: AbortSignal): Promise; post(relativePath: string, body?: string | object | ArrayBuffer | Blob | globalThis.File | FormData): Promise; put(relativePath: string, body?: string | object | ArrayBuffer | Blob | globalThis.File | FormData): Promise; delete(relativePath: string): Promise; postFile(relativePath: string, file: globalThis.File, onProgress?: (progress: number) => void): Promise; } //# sourceMappingURL=HttpClient.d.ts.map