import type { StorageProvider, StorageType } from '../types'; /** No-op provider used when no external storage is configured. */ export class NoopStorageProvider implements StorageProvider { async upload(): Promise { return ''; } async exists(): Promise { return false; } getUrl(): string { return ''; } async batchExists(_hashes: string[], _type: StorageType): Promise> { return new Set(); } }