/** * FFmpeg WASM Cache Utility * Caches FFmpeg core files in IndexedDB to avoid re-downloading on page reload */ declare class FFmpegCache { private db; init(): Promise; get(url: string): Promise; set(url: string, data: ArrayBuffer): Promise; remove(url: string): Promise; clear(): Promise; getCacheSize(): Promise; } export declare function cachedToBlobURL(url: string, mimeType: string): Promise; export declare function getCacheInfo(): Promise<{ size: number; sizeFormatted: string; files: number; }>; export declare function clearFFmpegCache(): Promise; export default FFmpegCache; //# sourceMappingURL=ffmpegCache.d.ts.map