import { z } from "@medusajs/framework/zod"; export type StoreGetPaymentCollectionParamsType = z.infer; export declare const StoreGetPaymentCollectionParams: z.ZodObject<{ fields: z.ZodOptional; }, "strip", z.ZodTypeAny, { fields?: string | undefined; }, { fields?: string | undefined; }>; export type StoreCreatePaymentSessionType = z.infer; export declare const StoreCreatePaymentSession: z.ZodObject<{ provider_id: z.ZodString; data: z.ZodOptional>; }, "strict", z.ZodTypeAny, { provider_id: string; data?: Record | undefined; }, { provider_id: string; data?: Record | undefined; }>; export type StoreCreatePaymentCollectionType = z.infer; export declare const StoreCreatePaymentCollection: z.ZodObject<{ cart_id: z.ZodString; }, "strict", z.ZodTypeAny, { cart_id: string; }, { cart_id: string; }>; //# sourceMappingURL=validators.d.ts.map