import { Contract, ContractOptions } from "web3-eth-contract"; import { AbiItem } from "web3-utils"; import { Wallet } from "../wallet"; export declare class NodeContract extends Contract { private address; private wallet; constructor(abi: AbiItem[], address: string, wallet: Wallet, options?: ContractOptions); }