import Balance from '../models/Balance'; import { Instantiable, InstantiableConfig } from '../Instantiable.abstract'; export default class Account extends Instantiable { private id; private password?; private token?; constructor(id?: string, config?: InstantiableConfig); getId(): string; setId(id: any): void; setPassword(password: string): void; getPassword(): string; setToken(token: string): void; getToken(): Promise; isTokenStored(): Promise; authenticate(): Promise; getOceanBalance(): Promise; getEtherBalance(): Promise; getBalance(): Promise; requestTokens(amount: number | string): Promise; }