import { Context as ContextBase } from '@hayspec/core'; import { Stage } from './stage'; export declare class Context extends ContextBase { stage: Stage; constructor(stage: Stage); readonly web3: any; getAccounts(): Promise; requireContract(options: { src: string; args?: any[]; from?: string; gas?: number; gasPrice?: number; }): Promise; toTuple(obj: any): any[]; }