import * as z from "zod/v3"; /** * Year-to-date benefit amounts contributed at a different company for the specified employee. */ export type YtdBenefitAmountsFromDifferentCompanyBody = { /** * The benefit type supported by Gusto. */ benefitType: number; /** * The tax year for which this amount applies. */ taxYear: number; /** * The year-to-date employee deduction made outside the current company. */ ytdEmployeeDeductionAmount?: string | undefined; /** * The year-to-date company contribution made outside the current company. */ ytdCompanyContributionAmount?: string | undefined; }; /** @internal */ export type YtdBenefitAmountsFromDifferentCompanyBody$Outbound = { benefit_type: number; tax_year: number; ytd_employee_deduction_amount: string; ytd_company_contribution_amount: string; }; /** @internal */ export declare const YtdBenefitAmountsFromDifferentCompanyBody$outboundSchema: z.ZodType; export declare function ytdBenefitAmountsFromDifferentCompanyBodyToJSON(ytdBenefitAmountsFromDifferentCompanyBody: YtdBenefitAmountsFromDifferentCompanyBody): string; //# sourceMappingURL=ytdbenefitamountsfromdifferentcompanybody.d.ts.map