import type { AxiosInstance } from 'axios'; export declare class AccountAPI { private readonly apiClient; static readonly URL: { CASH: string; INFO: string; }; constructor(apiClient: AxiosInstance); getCash(): Promise<{ blocked: number | null; free: number; invested: number; pieCash: number; ppl: number; result: number; total: number; }>; getInfo(): Promise<{ currencyCode: string; id: number; }>; }