import React from 'react'; import '@mux/mux-uploader'; import type { MuxUploaderRetryElement } from '@mux/mux-uploader'; export type MuxUploaderRetryRefAttributes = MuxUploaderRetryElement; export type MuxUploaderRetryProps = { muxUploader?: string; children?: React.ReactNode; } & Omit, HTMLElement>, 'ref'>; declare const MuxUploaderRetry: React.ForwardRefExoticComponent<{ muxUploader?: string; children?: React.ReactNode; } & Omit, HTMLElement>, "ref"> & React.RefAttributes>; export default MuxUploaderRetry;