import * as factory from '../../../factory';
import type { ActionRepo } from '../../../repo/action';
import type { AssetTransactionRepo } from '../../../repo/assetTransaction';
import type { TransactionRepo } from '../../../repo/transaction';
export declare function voidTransaction(params: factory.task.IData<factory.taskName.VoidMoneyTransferTransaction>): (repos: {
    action: ActionRepo;
    assetTransaction: AssetTransactionRepo;
    transaction: TransactionRepo;
}) => Promise<void>;
