import { PrivateKey } from '@neo-one/client-common'; import { Node, Transaction } from '@neo-one/node-core'; import { ConsensusContext } from './ConsensusContext'; import { Context } from './context'; import { Result } from './types'; export declare const handleTransactionReceived: ({ context, node, privateKey, transaction, consensusContext, }: { readonly context: Context>; readonly node: Node; readonly privateKey: PrivateKey; readonly transaction: Transaction; readonly consensusContext: ConsensusContext; }) => Promise>>>;