import type { JSX } from 'react'; export type DownloadButtonProps = { data: string; dataTestId?: string; }; export declare function DownloadButton({ data, dataTestId }: DownloadButtonProps): JSX.Element;