import { Me, Deposit, UpdateUser, User, Transaction, Withdraw } from '../interfaces'; export declare const getUser: (accessToken: string) => Promise; export declare const updateUser: (accessToken: string, dataToUpdate: UpdateUser) => Promise; export declare const deposit: (accessToken: string, newDeposit: Deposit) => Promise; export declare const withdraw: (accessToken: string, newWithdraw: Withdraw) => Promise;