import { ApprovalResponseInterface, BatchApproveData, TransactionI } from './interface'; interface AttachmentsInterface { fileAttachment: File[]; transaction: TransactionI | ApprovalResponseInterface | BatchApproveData; accountType: string | undefined; } declare const uploadAttachment: ({ fileAttachment, transaction, accountType }: AttachmentsInterface) => Promise<{ [x: number]: {}; }>; export default uploadAttachment;