export declare interface ERC20 { restURL: string config(token: Token, wallet: Wallet): void totalSupply(): Promise balanceOf(owner: string): Promise transfer(to: string, value: number, cb: (from: string, to: string, value: string) => any): Promise transferFrom(from: string, to: string, value: number): Promise } export declare interface Token { propertyid: number } export declare interface Wallet { mnemonic: string }