import * as z from "zod/v4-mini"; /** * Schema to update the benefits granted by a product. */ export type ProductBenefitsUpdate = { /** * List of benefit IDs. Each one must be on the same organization as the product. */ benefits: Array; }; /** @internal */ export type ProductBenefitsUpdate$Outbound = { benefits: Array; }; /** @internal */ export declare const ProductBenefitsUpdate$outboundSchema: z.ZodMiniType; export declare function productBenefitsUpdateToJSON(productBenefitsUpdate: ProductBenefitsUpdate): string; //# sourceMappingURL=productbenefitsupdate.d.ts.map