import { z } from 'zod'; export type ProductSchema = z.infer; export type ActiveSubscriptionsResponseSchema = z.infer; export declare const productSchema: z.ZodObject<{ namespace: z.ZodString; product_slug: z.ZodString; }, "strip", z.ZodTypeAny, { namespace: string; product_slug: string; }, { namespace: string; product_slug: string; }>; export declare const activeSubscriptionsResponseSchema: z.ZodObject<{ success: z.ZodBoolean; maybe_loyalty_program: z.ZodBoolean; active_subscriptions: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { success: boolean; maybe_loyalty_program: boolean; active_subscriptions: { namespace: string; product_slug: string; }[]; }, { success: boolean; maybe_loyalty_program: boolean; active_subscriptions: { namespace: string; product_slug: string; }[]; }>;