///
import { DownloadedReport } from './type';
export type DownloadIconButtonProps = {
onDownload?: () => Promise;
};
declare function DownloadIconButton({ onDownload }: DownloadIconButtonProps): import("react").JSX.Element;
export default DownloadIconButton;