import type { MediaProvider } from "./mediaProvider.js"; import type { MediaManagerAdapter } from "./components/MediaManager.js"; /** * Phase 11.5 ยง2.1: MediaManager.tsx was already built (upload/library/ * duplicate-detection/info panel) against its own MediaManagerAdapter * shape, not the real MediaProvider interface - this translates one into * the other. No MediaProvider change needed (confirmed in * docs/PHASE_11_5_MEDIAPROVIDER_FINDINGS.md): the shapes just differ * (batch vs. single upload; bundled vs. positional search query), not the * capabilities. */ export declare const mediaManagerAdapterFrom: (provider: MediaProvider) => MediaManagerAdapter;