import { AxiosInstance } from 'axios'; import { ICCashClient } from './CCashClient.types'; export declare class CCashClient implements ICCashClient { http: AxiosInstance; constructor(baseURL?: string | undefined); balance(user: string): Promise; log(user: string, password: string): Promise; sendFunds(user: string, password: string, to: string, amount: number): Promise; verifyPassword(user: string, password: string): Promise; changePassword(user: string, password: string, newPassword: string): Promise; setBalance(user: string, password: string, amount: number): Promise; help(): Promise; ping(): Promise<'pong'>; close(password: string): Promise; contains(user: string): Promise; adminVerifyPassword(password: string): Promise; addUser(user: string, password: string): Promise; adminAddUser(user: string, password: string, initialPassword: string, initialBalance: number): Promise; deleteUser(user: string, password: string): Promise; adminDeleteUser(user: string, password: string): Promise; private handleResponse; private handleExceptions; }