import type { abiERC20, abiERC1155, abiERC721 } from '@metamask/metamask-eth-abis'; declare type Contract = { at(address: string): any; }; export declare type Web3 = { eth: { call(payload: { to: string; data: string; }, block: undefined, callback: (error: Error, result: string) => void): void; contract(abi: typeof abiERC20 | typeof abiERC721 | typeof abiERC1155): Contract; }; }; export {}; //# sourceMappingURL=standards-types.d.ts.map