import { z } from 'zod';
/**
 * /v2/commerce/exchange/coins definition
 */
export declare const CommerceExchangeDTO: z.ZodObject<{
    /** The number of coins you required for a single currency unit. */
    coins_per_gem: z.ZodNumber;
    /** The number of gems you get for the specified quantity of currency. */
    quantity: z.ZodNumber;
}, z.core.$strict>;
