import * as z from "zod/v4-mini"; import { SubscriptionProrationBehavior } from "./subscriptionprorationbehavior.js"; export type CustomerSubscriptionUpdateSeats = { /** * Update the number of seats for this subscription. */ seats: number; /** * Determine how to handle the proration billing. If not provided, will use the default organization setting. */ prorationBehavior?: SubscriptionProrationBehavior | null | undefined; }; /** @internal */ export type CustomerSubscriptionUpdateSeats$Outbound = { seats: number; proration_behavior?: string | null | undefined; }; /** @internal */ export declare const CustomerSubscriptionUpdateSeats$outboundSchema: z.ZodMiniType; export declare function customerSubscriptionUpdateSeatsToJSON(customerSubscriptionUpdateSeats: CustomerSubscriptionUpdateSeats): string; //# sourceMappingURL=customersubscriptionupdateseats.d.ts.map