/**
 * 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 FiatMoney
 */
export interface FiatMoney {
    /**
     * Magnitude of the amount, in units of the currency, with a `.`.
     * @type {string}
     * @memberof FiatMoney
     */
    amount: string;
    /**
     * Currency code.
     * @type {string}
     * @memberof FiatMoney
     */
    currency: FiatMoneyCurrencyEnum;
}
export declare const FiatMoneyCurrencyEnum: {
    readonly Usd: "USD";
    readonly Eur: "EUR";
};
export declare type FiatMoneyCurrencyEnum = typeof FiatMoneyCurrencyEnum[keyof typeof FiatMoneyCurrencyEnum];
