import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BenefitGrantLicenseKeysProperties = { userProvidedKey?: string | undefined; licenseKeyId?: string | undefined; displayKey?: string | undefined; }; /** @internal */ export declare const BenefitGrantLicenseKeysProperties$inboundSchema: z.ZodMiniType; /** @internal */ export type BenefitGrantLicenseKeysProperties$Outbound = { user_provided_key?: string | undefined; license_key_id?: string | undefined; display_key?: string | undefined; }; /** @internal */ export declare const BenefitGrantLicenseKeysProperties$outboundSchema: z.ZodMiniType; export declare function benefitGrantLicenseKeysPropertiesToJSON(benefitGrantLicenseKeysProperties: BenefitGrantLicenseKeysProperties): string; export declare function benefitGrantLicenseKeysPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefitgrantlicensekeysproperties.d.ts.map