/**
 * 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 CryptoPaymentDestination
 */
export interface CryptoPaymentDestination {
    /**
     * The destination address
     * @type {string}
     * @memberof CryptoPaymentDestination
     */
    address: string;
    /**
     *
     * @type {string}
     * @memberof CryptoPaymentDestination
     */
    chain: CryptoPaymentDestinationChainEnum;
}
export declare const CryptoPaymentDestinationChainEnum: {
    readonly Eth: "ETH";
};
export declare type CryptoPaymentDestinationChainEnum = typeof CryptoPaymentDestinationChainEnum[keyof typeof CryptoPaymentDestinationChainEnum];
