import { z } from 'zod'; export declare namespace ListWithdrawalsCommand { const RequestListWithdrawalsSchema: z.ZodObject<{ orderId: z.ZodOptional; paymentId: z.ZodOptional; status: z.ZodOptional; dateFrom: z.ZodOptional; dateTo: z.ZodOptional; page: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: number | undefined; paymentId?: string | undefined; orderId?: number | undefined; dateFrom?: string | undefined; dateTo?: string | undefined; page?: number | undefined; }, { status?: number | undefined; paymentId?: string | undefined; orderId?: number | undefined; dateFrom?: string | undefined; dateTo?: string | undefined; page?: number | undefined; }>; type IListWithdrawals = z.infer; type IListWithdrawalsInput = z.input; const ResponseListWithdrawalsSchema: z.ZodObject<{ type: z.ZodEnum<["success", "error"]>; message: z.ZodOptional; pages: z.ZodNumber; orders: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { type: "success" | "error"; pages: number; orders: { status: number; date: string; currency: string; amount: number; account: string; id: number; ext_currency_id: number; }[]; message?: string | undefined; }, { type: "success" | "error"; pages: number; orders: { status: number; date: string; currency: string; amount: number; account: string; id: number; ext_currency_id: number; }[]; message?: string | undefined; }>; type IListWithdrawalsResponse = z.infer; } //# sourceMappingURL=list-withdrawals.command.d.ts.map