import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Benefit = { /** * The name of the benefit. */ name?: string | null | undefined; /** * The amount deducted for benefit. */ employeeDeduction?: number | null | undefined; /** * The amount of employer contribution. */ employerContribution?: number | null | undefined; }; /** @internal */ export declare const Benefit$inboundSchema: z.ZodType; /** @internal */ export type Benefit$Outbound = { name?: string | null | undefined; employee_deduction?: number | null | undefined; employer_contribution?: number | null | undefined; }; /** @internal */ export declare const Benefit$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Benefit$ { /** @deprecated use `Benefit$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Benefit$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Benefit$Outbound` instead. */ type Outbound = Benefit$Outbound; } export declare function benefitToJSON(benefit: Benefit): string; export declare function benefitFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefit.d.ts.map