import VM from 'ethereumts-vm';
import { Transaction } from 'ethereumjs-tx';
import { TestChainOptions } from '../TestChainOptions';
export declare function putBlock(vm: VM, transactions: Transaction[], options: TestChainOptions, clockSkew: number): Promise<{
    receipts: import("../model").RpcTransactionReceipt[];
    responses: import("../model").RpcTransactionResponse[];
}>;
