import Block from 'ethereumjs-block'; import { Transaction } from 'ethereumjs-tx'; import { RpcTransactionResponse, RpcTransactionReceipt } from '../model'; export declare function getReceiptsAndResponses(block: Block, transactions: Transaction[], results: any[]): { receipts: RpcTransactionReceipt[]; responses: RpcTransactionResponse[]; };