import { UppyFile } from '@uppy/core';
export interface UploadFileProps {
    file: UppyFile;
    onCancel?: (id: string) => void;
    onRetry?: (id: string) => void;
}
export interface UploadManagerProps {
    title: string;
    subTitle?: string;
    files: UppyFile[];
    onClose?: () => void;
    onCancel?: (id: string) => void;
    onRetry?: (id: string) => void;
}
