import * as z from "zod/v4-mini"; export type CustomerPortalSubscriptionsCancelSecurity = { customerSession?: string | undefined; memberSession?: string | undefined; }; export type CustomerPortalSubscriptionsCancelRequest = { /** * The subscription ID. */ id: string; }; /** @internal */ export type CustomerPortalSubscriptionsCancelSecurity$Outbound = { customer_session?: string | undefined; member_session?: string | undefined; }; /** @internal */ export declare const CustomerPortalSubscriptionsCancelSecurity$outboundSchema: z.ZodMiniType; export declare function customerPortalSubscriptionsCancelSecurityToJSON(customerPortalSubscriptionsCancelSecurity: CustomerPortalSubscriptionsCancelSecurity): string; /** @internal */ export type CustomerPortalSubscriptionsCancelRequest$Outbound = { id: string; }; /** @internal */ export declare const CustomerPortalSubscriptionsCancelRequest$outboundSchema: z.ZodMiniType; export declare function customerPortalSubscriptionsCancelRequestToJSON(customerPortalSubscriptionsCancelRequest: CustomerPortalSubscriptionsCancelRequest): string; //# sourceMappingURL=customerportalsubscriptionscancel.d.ts.map