import * as React from "react"; export type DownloadHiddenProps = { downloadUrl?: string; videoUrl?: string; anchorRef: React.RefObject; fileName: string; }; declare const DownloadHidden: React.FC; export default DownloadHidden;