/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface FiatMoneyUsd
 */
export interface FiatMoneyUsd {
    /**
     * Magnitude of the amount, in units of the currency, with a `.`.
     * @type {string}
     * @memberof FiatMoneyUsd
     */
    amount: string;
    /**
     * Currency code.
     * @type {string}
     * @memberof FiatMoneyUsd
     */
    currency: FiatMoneyUsdCurrencyEnum;
}
export declare const FiatMoneyUsdCurrencyEnum: {
    readonly Usd: "USD";
};
export declare type FiatMoneyUsdCurrencyEnum = typeof FiatMoneyUsdCurrencyEnum[keyof typeof FiatMoneyUsdCurrencyEnum];
