import type { SxProps } from '@mui/material'; import { FC } from 'react'; type MediaItem = { url: string; type: 'image' | 'video'; attributionText?: string; attributionUrl?: string; previewWidth?: number; previewHeight?: number; }; declare const MediaBox: FC<{ media: MediaItem[]; sx?: SxProps; }>; export default MediaBox;