/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * A currency associated with a balance or address.
 * @export
 * @enum {string}
 */
export declare const Currency: {
    readonly Usd: "USD";
    readonly Eur: "EUR";
    readonly Btc: "BTC";
    readonly Eth: "ETH";
};
export declare type Currency = typeof Currency[keyof typeof Currency];
