1 import type { ReactNode } from 'react';
3 import type { IconName } from '@proton/components';
5 import type { Download, TransferType, Upload } from './transfer';
7 export interface TransferProps<T extends TransferType> {
8 transfer: T extends TransferType.Download ? Download : Upload;
12 export interface TransferManagerButtonProps {
20 export interface TransfersManagerButtonsProps {
21 buttons: TransferManagerButtonProps[];