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