type MediaRendererProps = {
  alt?: string;
  children?: ReactNode;
  className?: string;
  controls?: HTMLVideoElement["controls"];
  gatewayUrl?: string;
  height?: string;
  mimeType?: string;
  poster?: string | null;
  requireInteraction?: boolean;
  src?: string | null;
  style?: React.CSSProperties;
  width?: string;
};