import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Response containing the calculated gross up amount */ export type PayrollGrossUpResponse = { /** * Gross up earnings. */ grossUp?: string | undefined; }; /** @internal */ export declare const PayrollGrossUpResponse$inboundSchema: z.ZodType; export declare function payrollGrossUpResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payrollgrossupresponse.d.ts.map