import { BaseDownloadProps } from './interface'; declare type NativeDownloadProps = BaseDownloadProps; export declare function downloadFileToLocal(param: BaseDownloadProps): Promise; declare const DownloadButton: (props: NativeDownloadProps) => JSX.Element; export default DownloadButton;