import { Contract, type Provider, type InterfaceAbi } from 'ethers';
export type TokenType = 'erc20' | 'erc20wrap' | 'erc721' | 'erc721meta' | 'erc1155';
export declare const ERC_ABIS: {
    [tokenType in TokenType]: InterfaceAbi;
};
export declare function initToken(tokenType: TokenType, address: `0x${string}`, provider: Provider): Contract;
