import * as React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; import { FunctionGeneric } from '../../../common/structures/Generics'; export interface DownloaderItemProps extends IReactComponentProps { cancelText?: string; downloaded?: number; itemSize?: number; label?: string; onCancel?: FunctionGeneric; onCancelIPCEvent?: string; progress?: number; progressText?: string | number | boolean; truncateProgressText?: boolean; queueIndex?: number; queueLength?: number; showCancel?: boolean; showEllipsis?: boolean; stripes?: boolean; timeStamp?: number; timeStampText?: string; } declare const DownloaderItem: (props: DownloaderItemProps) => React.JSX.Element; export default DownloaderItem; export interface DownloaderOverlayProps extends IReactComponentProps { downloaderItems: Array; } export declare const DownloaderOverlay: (props: DownloaderOverlayProps) => React.JSX.Element; //# sourceMappingURL=DownloaderItem.d.ts.map