import VM from 'ethereumts-vm';
import { Transaction } from 'ethereumjs-tx';
import { RunTxResult } from 'ethereumts-vm/dist/runTx';
import { TestChainOptions } from '../TestChainOptions';
export declare function runIsolatedTransaction(vm: VM, transaction: Transaction, options: TestChainOptions, clockSkew: number): Promise<RunTxResult>;
