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