import React from 'react'; export interface IDownloadProps { url: string; children: React.ReactNode; fileName?: string; } /** 下载组件 */ export declare function UrlDownload({ children, url, fileName, }: IDownloadProps): JSX.Element;