import { Ref } from 'vue'; import { ToastMethod } from '../../node_modules/tsv2-library/dist/src/utils/toast.util'; import { ApprovalTransaction } from '../types/approval.type'; import { SettingTransaction } from '../types/setting-transaction.type'; /** * Get the approver list of the transaction from the server. */ declare const getApproverList: (transactionId: Ref, setLoading: (value: boolean) => void, approvalList: Ref, toast: ToastMethod) => Promise; /** * Get the setting transaction data from the server. */ declare const getSettingTransactionData: (setLoading: (value: boolean) => void, settingTransaction: Ref, toast: ToastMethod) => Promise; export { getApproverList, getSettingTransactionData };