import { z } from 'zod';
/**
 * /v2/account/wallet definition
 */
export declare const AccountWalletDTO: z.ZodArray<z.ZodObject<{
    /** Id of the currency. Can be resolved against /v2/currencies. */
    id: z.ZodNumber;
    /** The amount of this currency. */
    value: z.ZodNumber;
}, z.core.$strict>>;
