import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AggregatedFeature } from "./aggregated-feature.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { SubscriptionResponse } from "./subscription-response.js"; export type CustomerEntitlementsResponse = { customerId?: string | undefined; features?: Array | undefined; subscriptions?: Array | undefined; }; /** @internal */ export declare const CustomerEntitlementsResponse$inboundSchema: z.ZodMiniType; export declare function customerEntitlementsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customer-entitlements-response.d.ts.map