import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Properties for a benefit of type `custom`. */ export type BenefitCustomProperties = { note: string | null; }; /** @internal */ export declare const BenefitCustomProperties$inboundSchema: z.ZodMiniType; /** @internal */ export type BenefitCustomProperties$Outbound = { note: string | null; }; /** @internal */ export declare const BenefitCustomProperties$outboundSchema: z.ZodMiniType; export declare function benefitCustomPropertiesToJSON(benefitCustomProperties: BenefitCustomProperties): string; export declare function benefitCustomPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefitcustomproperties.d.ts.map