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"; export type SubscriptionEntitlementsResponse = { features?: Array | undefined; planId?: string | undefined; subscriptionId?: string | undefined; }; /** @internal */ export declare const SubscriptionEntitlementsResponse$inboundSchema: z.ZodMiniType; export declare function subscriptionEntitlementsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscription-entitlements-response.d.ts.map