import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { EntitlementGrantDurationUnit } from "./entitlement-grant-duration-unit.js"; import { EntitlementGrantMeasure } from "./entitlement-grant-measure.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type AggregatedEntitlementBucket = { entitlementId?: string | undefined; grantDurationUnit?: EntitlementGrantDurationUnit | undefined; grantDurationValue?: number | undefined; grantMeasure?: EntitlementGrantMeasure | undefined; grantQuota?: string | undefined; sourceEntityId?: string | undefined; usageLimit?: number | undefined; }; /** @internal */ export declare const AggregatedEntitlementBucket$inboundSchema: z.ZodMiniType; export declare function aggregatedEntitlementBucketFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=aggregated-entitlement-bucket.d.ts.map