import { Web3Context, Web3PluginBase } from 'web3'; import { BaseWeb3Multicall3 } from '../web3-multicall3.base'; export declare class Web3Multicall3Plugin extends Web3PluginBase { #private; pluginNamespace: string; aggregate3: BaseWeb3Multicall3['aggregate3']; constructor(address?: string); link(ctx: Web3Context): void; } declare module 'web3' { interface Web3Context { multicall: Web3Multicall3Plugin; } }