import { ReactElement } from 'react'; import './FileProgressNotification.scss'; import { FileTransferType, TransferStatus } from '../../constants/transfers'; declare type ProgressItem = { name: string; size?: string; percent?: number; kind?: FileTransferType; status?: TransferStatus; driveName?: string; etaSec?: number; elapsedSec?: number; }; interface FileProgressNotificationProps { label?: string; type: FileTransferType; open?: boolean; count?: number; items?: ProgressItem[]; onRowClose?: (name: string) => void; onCloseAll?: () => void; } export declare function FileProgressNotification({ label, type, open, count, items, onRowClose, onCloseAll, }: FileProgressNotificationProps): ReactElement | null; export {};