import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BenefitLicenseKeyActivationProperties = { limit: number; enableCustomerAdmin: boolean; }; /** @internal */ export declare const BenefitLicenseKeyActivationProperties$inboundSchema: z.ZodMiniType; /** @internal */ export type BenefitLicenseKeyActivationProperties$Outbound = { limit: number; enable_customer_admin: boolean; }; /** @internal */ export declare const BenefitLicenseKeyActivationProperties$outboundSchema: z.ZodMiniType; export declare function benefitLicenseKeyActivationPropertiesToJSON(benefitLicenseKeyActivationProperties: BenefitLicenseKeyActivationProperties): string; export declare function benefitLicenseKeyActivationPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefitlicensekeyactivationproperties.d.ts.map