import { z } from 'zod'; export declare const paymentItemSchema: z.ZodObject<{ orderProductId: z.ZodNumber; quantity: z.ZodNumber; description: z.ZodOptional; brand: z.ZodOptional; voucherCode: z.ZodOptional; variantId: z.ZodNumber; merchantProductId: z.ZodOptional; descriptionAddition: z.ZodOptional; tax: z.ZodOptional; productId: z.ZodOptional; bruttoDiscount: z.ZodOptional; nettoPrice: z.ZodOptional; price: z.ZodNumber; undiscountedUnitPrice: z.ZodOptional; unitPrice: z.ZodOptional; unitPriceWithoutTaxWithVoucher: z.ZodOptional; unitTaxValueWithVoucher: z.ZodOptional; discount: z.ZodOptional; }, "strip", z.ZodTypeAny, { price: number; quantity: number; variantId: number; orderProductId: number; description?: string | undefined; brand?: string | undefined; productId?: number | undefined; tax?: number | undefined; unitPrice?: number | undefined; voucherCode?: string | undefined; merchantProductId?: string | undefined; descriptionAddition?: string | undefined; bruttoDiscount?: number | undefined; nettoPrice?: number | undefined; undiscountedUnitPrice?: number | undefined; unitPriceWithoutTaxWithVoucher?: number | undefined; unitTaxValueWithVoucher?: number | undefined; discount?: number | undefined; }, { price: number; quantity: number; variantId: number; orderProductId: number; description?: string | undefined; brand?: string | undefined; productId?: number | undefined; tax?: number | undefined; unitPrice?: number | undefined; voucherCode?: string | undefined; merchantProductId?: string | undefined; descriptionAddition?: string | undefined; bruttoDiscount?: number | undefined; nettoPrice?: number | undefined; undiscountedUnitPrice?: number | undefined; unitPriceWithoutTaxWithVoucher?: number | undefined; unitTaxValueWithVoucher?: number | undefined; discount?: number | undefined; }>; export type PaymentItem = z.infer; //# sourceMappingURL=payment-item-schema.d.ts.map