import { Web3 } from '../Web3'; import { IWeb3TokenListRawParams, IWeb3TokenListRawReturns } from './token/listRaw'; export interface IWeb3TokenModule { listRaw(params?: IWeb3TokenListRawParams): Promise; } export declare function token(web3: Web3): IWeb3TokenModule;