import { z } from 'zod';
/**
 * /v2/currencies definition.
 */
export declare const CurrenciesDTO: z.ZodArray<z.ZodObject<{
    /** Currency id. */
    id: z.ZodNumber;
    /** Currency name. */
    name: z.ZodString;
    /** Currency description. */
    description: z.ZodString;
    /** Order of the currency in the list. */
    order: z.ZodNumber;
    /** Currency icon url. */
    icon: z.ZodString;
}, z.core.$strict>>;
