import { z } from 'zod'; export declare namespace GetBalanceCommand { const ResponseGetBalanceSchema: z.ZodObject<{ type: z.ZodEnum<["success", "error"]>; balance: z.ZodArray; value: z.ZodNumber; }, "strip", z.ZodTypeAny, { value: number; currency: "RUB" | "USD" | "EUR" | "UAH" | "KZT"; }, { value: number; currency: "RUB" | "USD" | "EUR" | "UAH" | "KZT"; }>, "many">; message: z.ZodOptional; }, "strip", z.ZodTypeAny, { type: "success" | "error"; balance: { value: number; currency: "RUB" | "USD" | "EUR" | "UAH" | "KZT"; }[]; message?: string | undefined; }, { type: "success" | "error"; balance: { value: number; currency: "RUB" | "USD" | "EUR" | "UAH" | "KZT"; }[]; message?: string | undefined; }>; type IGetBalanceResponse = z.infer; } //# sourceMappingURL=get-balance.command.d.ts.map