import { DepositConfiguration } from '../../types'; import { BaseModule } from '../base-module'; /** * */ export declare class UserModule extends BaseModule { /** */ login(): Promise; /** */ logout(): Promise; /** */ getUser(): Promise; /** */ getBalances(): Promise; /** */ getTransactions(): Promise; /** */ isLoggedIn(): Promise; /** */ settings(): Promise; /** * With configuration, it will skip the deposit selection page and takes the user to the fiat-on-ramp flow directly * */ deposit(payload?: DepositConfiguration): Promise; }