/// import { UploadAttachmentsType } from '../InputFile/InputFile.types'; export interface IBFile { fileName: string; file?: File; blobId: string; fileType: number; fileLength: number; contentType: string; } export interface IUploadAttachmentProps { className?: string; type?: UploadAttachmentsType; value: IBFile[] | IBFile; title?: string; children?: React.ReactNode; onChange?(files: IBFile[] | IBFile): any; onFileDownload?(file: IBFile): void; accept?: string; disabled?: boolean; tooltipInfo?: string; onDelete?: (file: any) => void; }