import * as z from "zod/v4-mini"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const Timeframe: { readonly Year: "year"; readonly Month: "month"; readonly Day: "day"; }; export type Timeframe = OpenEnum; export type BenefitLicenseKeyExpirationProperties = { ttl: number; timeframe: Timeframe; }; /** @internal */ export declare const Timeframe$inboundSchema: z.ZodMiniType; /** @internal */ export declare const Timeframe$outboundSchema: z.ZodMiniType; /** @internal */ export declare const BenefitLicenseKeyExpirationProperties$inboundSchema: z.ZodMiniType; /** @internal */ export type BenefitLicenseKeyExpirationProperties$Outbound = { ttl: number; timeframe: string; }; /** @internal */ export declare const BenefitLicenseKeyExpirationProperties$outboundSchema: z.ZodMiniType; export declare function benefitLicenseKeyExpirationPropertiesToJSON(benefitLicenseKeyExpirationProperties: BenefitLicenseKeyExpirationProperties): string; export declare function benefitLicenseKeyExpirationPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefitlicensekeyexpirationproperties.d.ts.map