import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BenefitLicenseKeyActivationProperties, BenefitLicenseKeyActivationProperties$Outbound } from "./benefitlicensekeyactivationproperties.js"; import { BenefitLicenseKeyExpirationProperties, BenefitLicenseKeyExpirationProperties$Outbound } from "./benefitlicensekeyexpirationproperties.js"; export type BenefitLicenseKeysProperties = { prefix: string | null; expires: BenefitLicenseKeyExpirationProperties | null; activations: BenefitLicenseKeyActivationProperties | null; limitUsage: number | null; }; /** @internal */ export declare const BenefitLicenseKeysProperties$inboundSchema: z.ZodMiniType; /** @internal */ export type BenefitLicenseKeysProperties$Outbound = { prefix: string | null; expires: BenefitLicenseKeyExpirationProperties$Outbound | null; activations: BenefitLicenseKeyActivationProperties$Outbound | null; limit_usage: number | null; }; /** @internal */ export declare const BenefitLicenseKeysProperties$outboundSchema: z.ZodMiniType; export declare function benefitLicenseKeysPropertiesToJSON(benefitLicenseKeysProperties: BenefitLicenseKeysProperties): string; export declare function benefitLicenseKeysPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefitlicensekeysproperties.d.ts.map