import type { MuxMediaProps } from '@mux/playback-core'; export type MuxVideoProps = Omit & Omit, 'autoPlay'>; export type NativeVideoProps = Omit, 'preload' | 'width' | 'height'>; export type MediaProps = TPlaybackId extends string ? MuxVideoProps & { playbackId?: TPlaybackId; } : NativeVideoProps & { playbackId?: undefined; }; declare const Media: import("react").ForwardRefExoticComponent<((NativeVideoProps & { playbackId?: undefined; }) | Omit & Omit, HTMLVideoElement>, "autoPlay"> & { playbackId?: string | undefined; }, "ref">) & import("react").RefAttributes>; export default Media;