export declare function noteModelUrl(modelId: string, url: string): void; export declare function fetchWithCache(input: RequestInfo | URL, modelId?: string): Promise; export declare function fetchArrayBufferWithCacheProgress(url: string, modelId?: string, onProgress?: (loadedBytes: number, totalBytes?: number) => void, expectedTotalBytes?: number): Promise; export declare function purgeModelCache(modelId: string): Promise; export declare function purgeAllCaches(): Promise;