import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Acceptance acknowledgement for an asynchronous employees annual FICA wage report. Returned with HTTP 202; poll the report status endpoint using `request_uuid`. */ export type EmployeesAnnualFicaWageReportAcceptance = { /** * The UUID of the report request. Use this to poll for report completion. */ requestUuid: string; /** * The UUID of the company. */ companyUuid: string; /** * The start year for the report. */ startYear: number; /** * The end year for the report. */ endYear: number; }; /** @internal */ export declare const EmployeesAnnualFicaWageReportAcceptance$inboundSchema: z.ZodType; export declare function employeesAnnualFicaWageReportAcceptanceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=employeesannualficawagereportacceptance.d.ts.map