import { TxBase } from '../common/tx-base.cjs'; import { TxNoSignature } from '../common/tx-no-signature.cjs'; export type TxVmeTransferReward = TxBase & TxNoSignature & { target: string; rewardAmount: string; gathered: string; refHeight: number; };