import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The current status of the subscription. */ export declare const SubscriptionStatus: { readonly Active: "active"; readonly Canceled: "canceled"; readonly Unpaid: "unpaid"; readonly Paused: "paused"; readonly Trialing: "trialing"; readonly ScheduledCancel: "scheduled_cancel"; }; /** * The current status of the subscription. */ export type SubscriptionStatus = ClosedEnum; /** @internal */ export declare const SubscriptionStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const SubscriptionStatus$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=subscriptionstatus.d.ts.map