import { View, EventType } from './solidity'; /** * https://eips.ethereum.org/EIPS/eip-20 */ export declare const ERC20: { name: View, import("./abi").DecodedTuple<{ name: "string"; }>>; symbol: View, import("./abi").DecodedTuple<{ symbol: "string"; }>>; balanceOf: View, import("./abi").DecodedTuple<{ balance: "uint256"; }>>; allowance: View, import("./abi").DecodedTuple<{ allowance: "uint256"; }>>; approve: View, void>; Transfer: EventType<{ from: "address"; to: "address"; value: "uint256"; }>; }; /** * https://eips.ethereum.org/EIPS/eip-1155 */ export declare const ERC1155: { balanceOfBatch: View, import("./abi").DecodedTuple<{ balances: "uint256[]"; }>>; TransferSingle: EventType<{ operator: "address"; from: "address"; to: "address"; id: "uint256"; value: "uint256"; }>; uri: View, import("./abi").DecodedTuple<{ uri: "string"; }>>; };