import { IBFile } from './UploadAttachment.types'; import { UploadAttachmentsType } from '../InputFile/InputFile.types'; export declare const removeDuplicates: (files: IBFile[]) => IBFile[]; export declare const onFileChange: (e: File | File[], value: IBFile | IBFile[], type: UploadAttachmentsType, onChange?: (files: IBFile[] | IBFile) => void) => void; export declare const onTagClick: (file: IBFile, onDownloadAttachment: (file: IBFile) => void) => void;