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