declare class Currency {
    private Id;
    private Name;
    private Symbol;
    private Algorithm;
    private WithdrawFee;
    private MinWithdraw;
    private MinBaseTrade;
    private IsTipEnabled;
    private MinTip;
    private DepositConfirmations;
    private Status;
    private StatusMessage;
    private ListingStatus;
    constructor(currency: any);
    readonly id: number;
    readonly name: string;
    readonly symbol: string;
    readonly algorithm: string;
    readonly withdrawFee: number;
    readonly minWithdraw: number;
    readonly minBaseTrade: number;
    readonly isTipEnabled: boolean;
    readonly minTip: number;
    readonly depositConfirmations: number;
    readonly status: string;
    readonly statusMessage: string;
    readonly listingStatus: string;
}
export default Currency;
