export declare const funDownload: ({ content, fileName, fileType }: { content: any; fileName: string; fileType: string; }, cb?: Function) => void; interface IDownloadByUrl { resourceUrl?: string; fileName?: string; } export declare function downloadByUrl(params?: IDownloadByUrl): Promise; export {};