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