import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ExternalPayrollTaxSuggestions } from "../components/externalpayrolltaxsuggestions.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 GetV1ExternalPayrollCalculateTaxesHeaderXGustoAPIVersion: { 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 GetV1ExternalPayrollCalculateTaxesHeaderXGustoAPIVersion = ClosedEnum; export type GetV1ExternalPayrollCalculateTaxesRequest = { /** * 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?: GetV1ExternalPayrollCalculateTaxesHeaderXGustoAPIVersion | undefined; /** * The UUID of the company */ companyUuid: string; /** * The UUID of the external payroll */ externalPayrollId: string; }; export type GetV1ExternalPayrollCalculateTaxesResponse = { httpMeta: HTTPMetadata; /** * Success */ externalPayrollTaxSuggestions?: Array | undefined; }; /** @internal */ export declare const GetV1ExternalPayrollCalculateTaxesHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1ExternalPayrollCalculateTaxesRequest$Outbound = { "X-Gusto-API-Version": string; company_uuid: string; external_payroll_id: string; }; /** @internal */ export declare const GetV1ExternalPayrollCalculateTaxesRequest$outboundSchema: z.ZodType; export declare function getV1ExternalPayrollCalculateTaxesRequestToJSON(getV1ExternalPayrollCalculateTaxesRequest: GetV1ExternalPayrollCalculateTaxesRequest): string; /** @internal */ export declare const GetV1ExternalPayrollCalculateTaxesResponse$inboundSchema: z.ZodType; export declare function getV1ExternalPayrollCalculateTaxesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1externalpayrollcalculatetaxes.d.ts.map