import { z } from 'zod'; export declare namespace GetWithdrawalsCurrenciesCommand { const ResponseGetWithdrawalsCurrenciesSchema: z.ZodObject<{ type: z.ZodEnum<["success", "error"]>; message: z.ZodOptional; currencies: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { type: "success" | "error"; currencies: { currency: string; id: number; name: string; min: number; max: number; can_exchange: number; }[]; message?: string | undefined; }, { type: "success" | "error"; currencies: { currency: string; id: number; name: string; min: number; max: number; can_exchange: number; }[]; message?: string | undefined; }>; type IGetWithdrawalsCurrenciesResponse = z.infer; } //# sourceMappingURL=get-withdrawals-currencies.command.d.ts.map