import { Transaction } from '@near-wallet-selector/core'; import JSBI from 'jsbi'; interface TransferTokensParams { tokenId: string; accountFrom: string; accountTo: string; amount: JSBI; } declare const transferToken: ({ tokenId, accountFrom, accountTo, amount, }: TransferTokensParams) => Transaction; export { transferToken };