import { z } from 'zod'; export declare namespace ListOrdersCommand { const RequestListOrdersSchema: z.ZodObject<{ paymentId: z.ZodOptional; orderId: z.ZodOptional; status: z.ZodOptional, z.ZodLiteral<1>, z.ZodLiteral<8>, z.ZodLiteral<9>]>>; dateFrom: z.ZodOptional; dateTo: z.ZodOptional; page: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: 0 | 1 | 8 | 9 | undefined; paymentId?: string | undefined; orderId?: number | undefined; dateFrom?: string | undefined; dateTo?: string | undefined; page?: number | undefined; }, { status?: 0 | 1 | 8 | 9 | undefined; paymentId?: string | undefined; orderId?: number | undefined; dateFrom?: string | undefined; dateTo?: string | undefined; page?: number | undefined; }>; type IListOrders = z.infer; type IListOrdersInput = z.input; const ResponseListOrdersSchema: z.ZodObject<{ type: z.ZodEnum<["success", "error"]>; pages: z.ZodNumber; orders: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { type: "success" | "error"; pages: number; orders: { status: number; date: string; currency: string; amount: number; email: string; account: string; merchant_order_id: string; fk_order_id: number; }[]; }, { type: "success" | "error"; pages: number; orders: { status: number; date: string; currency: string; amount: number; email: string; account: string; merchant_order_id: string; fk_order_id: number; }[]; }>; type IListOrdersResponse = z.infer; } //# sourceMappingURL=list-orders.command.d.ts.map