import { z } from "@medusajs/framework/zod"; export type AdminGetPaymentCollectionParamsType = z.infer; export declare const AdminGetPaymentCollectionParams: z.ZodObject<{ fields: z.ZodOptional; }, "strip", z.ZodTypeAny, { fields?: string | undefined; }, { fields?: string | undefined; }>; export type AdminCreatePaymentCollectionType = z.infer; export declare const AdminCreatePaymentCollection: z.ZodObject<{ order_id: z.ZodString; amount: z.ZodNumber; }, "strict", z.ZodTypeAny, { order_id: string; amount: number; }, { order_id: string; amount: number; }>; export type AdminMarkPaymentCollectionPaidType = z.infer; export declare const AdminMarkPaymentCollectionPaid: z.ZodObject<{ order_id: z.ZodString; }, "strict", z.ZodTypeAny, { order_id: string; }, { order_id: string; }>; //# sourceMappingURL=validators.d.ts.map