import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type HoursEarned = { /** * The UUID of the time off policy */ timeOffPolicyUuid?: string | undefined; /** * Hours accrued during this pay period. */ hours?: string | undefined; }; /** * Response containing the calculated accruing time off hours */ export type PayrollCalculateAccruingTimeOffHoursResponse = { /** * Accruing time off hours earned for each time off policy */ hoursEarned: Array; }; /** @internal */ export declare const HoursEarned$inboundSchema: z.ZodType; export declare function hoursEarnedFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PayrollCalculateAccruingTimeOffHoursResponse$inboundSchema: z.ZodType; export declare function payrollCalculateAccruingTimeOffHoursResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payrollcalculateaccruingtimeoffhoursresponse.d.ts.map