import { MutationKey, UseMutationResult } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GustoEmbeddedError } from "../models/errors/gustoembeddederror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { NotFoundErrorObject } from "../models/errors/notfounderrorobject.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { UnprocessableEntityError } from "../models/errors/unprocessableentityerror.js"; import { PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesRequest, PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesResponse } from "../models/operations/postv1employeesemployeeuuidsection603highearnerstatuses.js"; import { MutationHookOptions } from "./_types.js"; export type EmployeeBenefitsPostV1EmployeesEmployeeUuidSection603HighEarnerStatusesMutationVariables = { request: PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesRequest; options?: RequestOptions; }; export type EmployeeBenefitsPostV1EmployeesEmployeeUuidSection603HighEarnerStatusesMutationData = PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesResponse; export type EmployeeBenefitsPostV1EmployeesEmployeeUuidSection603HighEarnerStatusesMutationError = NotFoundErrorObject | UnprocessableEntityError | GustoEmbeddedError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * Create a Section 603 high earner status * * @remarks * Create a Section 603 high earner status for an employee for a specific year. * * Section 603 of the SECURE 2.0 Act applies to employees aged 50 or older whose prior-year FICA wages exceed the IRS threshold. * These employees are classified as high earners, and their catch-up contributions to pre-tax retirement benefits must be designated as post-tax contributions. * * scope: `employee_benefits:write` */ export declare function useEmployeeBenefitsPostV1EmployeesEmployeeUuidSection603HighEarnerStatusesMutation(options?: MutationHookOptions): UseMutationResult; export declare function mutationKeyEmployeeBenefitsPostV1EmployeesEmployeeUuidSection603HighEarnerStatuses(): MutationKey; export declare function buildEmployeeBenefitsPostV1EmployeesEmployeeUuidSection603HighEarnerStatusesMutation(client$: GustoEmbeddedCore, hookOptions?: RequestOptions): { mutationKey: MutationKey; mutationFn: (variables: EmployeeBenefitsPostV1EmployeesEmployeeUuidSection603HighEarnerStatusesMutationVariables) => Promise; }; //# sourceMappingURL=employeeBenefitsPostV1EmployeesEmployeeUuidSection603HighEarnerStatuses.d.ts.map