import * as z from "zod/v4-mini"; export type GetSubscriptionsForCustomerRequest = { /** * Customer External ID */ externalId: string; /** * Comma-separated fields to expand: subscription_line_items, subscription_line_items.meters, entitlements, plan, customer */ expand?: string | undefined; }; /** @internal */ export type GetSubscriptionsForCustomerRequest$Outbound = { external_id: string; expand?: string | undefined; }; /** @internal */ export declare const GetSubscriptionsForCustomerRequest$outboundSchema: z.ZodMiniType; export declare function getSubscriptionsForCustomerRequestToJSON(getSubscriptionsForCustomerRequest: GetSubscriptionsForCustomerRequest): string; //# sourceMappingURL=get-subscriptions-for-customer-op.d.ts.map