export default MediaAssetViewer;
/**
 * Orchestrates the rendering of media assets based on their type and manages fullscreen state.
 * Defaults to an iframe viewer for unsupported types.
 */
declare function MediaAssetViewer({ src, annotations, allowFullScreen, showAnnotations, }: {
    src: any;
    annotations?: any[] | undefined;
    allowFullScreen: any;
    showAnnotations?: boolean | undefined;
}): import("react/jsx-runtime").JSX.Element | null;
