/** * MediaDetailPanel Component * * Panel for editing media metadata (alt text, caption, tags). * Shows file info in a compact grid and provides a polished editing experience. * Used inside the media detail dialog (showPreview=false) or standalone. */ import type { Media } from '../../lib/media/types'; interface MediaDetailPanelProps { media: Media | null; onClose?: () => void; showPreview?: boolean; readOnly?: boolean; className?: string; } export declare function MediaDetailPanel({ media, onClose, showPreview, readOnly, className }: MediaDetailPanelProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=MediaDetailPanel.d.ts.map