declare class Balance {
    private CurrencyId;
    private Symbol;
    private Total;
    private Available;
    private Unconfirmed;
    private HeldForTrades;
    private PendingWithdraw;
    private Address;
    private BaseAddress;
    private Status;
    private StatusMessage;
    constructor(balance: any);
    readonly currencyId: number;
    readonly symbol: string;
    readonly total: number;
    readonly available: number;
    readonly unconfirmed: number;
    readonly heldForTrades: number;
    readonly pendingWithdraw: number;
    readonly address: string;
    readonly baseAddress: string;
    readonly status: string;
    readonly statusMessage: string;
}
export default Balance;
