import { default as React } from 'react'; import { IconStringList } from '../../Icons/Icon.models'; type DownloadLoaderProps = { /** Optionally change the icon */ customIcon?: IconStringList; /** Optional className */ customClass?: string; /** Optional prop to add a test id to the DownloadLoader for QA testing */ qaTestId?: string; }; declare const DownloadLoader: ({ customIcon, customClass, qaTestId, }: DownloadLoaderProps) => React.JSX.Element; export default DownloadLoader;