import type { FileWithBlobUrl } from './types'; export declare class FilesProvider { readonly maxCacheSize: number; private cache; constructor(maxCacheSize?: number); getFile(fileSrc: string | null | undefined): Promise; clearCache(): void; }