/**
 * 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 PayoutMoney
 */
export interface PayoutMoney {
    /**
     * Magnitude of the amount, in units of the currency, with a `.`.
     * @type {string}
     * @memberof PayoutMoney
     */
    amount: string;
    /**
     * Currency code for the amount.
     * @type {string}
     * @memberof PayoutMoney
     */
    currency: PayoutMoneyCurrencyEnum;
}
export declare const PayoutMoneyCurrencyEnum: {
    readonly Usd: "USD";
    readonly Eur: "EUR";
    readonly Btc: "BTC";
    readonly Eth: "ETH";
    readonly Mtc: "MTC";
    readonly Flw: "FLW";
    readonly Man: "MAN";
};
export declare type PayoutMoneyCurrencyEnum = typeof PayoutMoneyCurrencyEnum[keyof typeof PayoutMoneyCurrencyEnum];
