import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { HTTPMetadata } from "../components/httpmetadata.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ export declare const DeleteV1EmployeeBenefitsEmployeeBenefitIdHeaderXGustoAPIVersion: { readonly TwoThousandAndTwentyFiveMinus06Minus15: "2025-06-15"; }; /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ export type DeleteV1EmployeeBenefitsEmployeeBenefitIdHeaderXGustoAPIVersion = ClosedEnum; export type DeleteV1EmployeeBenefitsEmployeeBenefitIdRequest = { /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ xGustoAPIVersion?: DeleteV1EmployeeBenefitsEmployeeBenefitIdHeaderXGustoAPIVersion | undefined; /** * The UUID of the employee benefit. */ employeeBenefitId: string; }; export type DeleteV1EmployeeBenefitsEmployeeBenefitIdResponse = { httpMeta: HTTPMetadata; }; /** @internal */ export declare const DeleteV1EmployeeBenefitsEmployeeBenefitIdHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type DeleteV1EmployeeBenefitsEmployeeBenefitIdRequest$Outbound = { "X-Gusto-API-Version": string; employee_benefit_id: string; }; /** @internal */ export declare const DeleteV1EmployeeBenefitsEmployeeBenefitIdRequest$outboundSchema: z.ZodType; export declare function deleteV1EmployeeBenefitsEmployeeBenefitIdRequestToJSON(deleteV1EmployeeBenefitsEmployeeBenefitIdRequest: DeleteV1EmployeeBenefitsEmployeeBenefitIdRequest): string; /** @internal */ export declare const DeleteV1EmployeeBenefitsEmployeeBenefitIdResponse$inboundSchema: z.ZodType; export declare function deleteV1EmployeeBenefitsEmployeeBenefitIdResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletev1employeebenefitsemployeebenefitid.d.ts.map