import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PossibleLiabilities = { /** * Liability amount. */ liabilityAmount?: string | undefined; /** * The external payroll check date. */ payrollCheckDate?: string | null | undefined; /** * The UUID of the external payroll. */ externalPayrollUuid?: string | null | undefined; }; /** * The representation of tax liabilities selections. */ export type TaxLiabilitiesSelections = { /** * The ID of the tax. */ taxId?: number | undefined; /** * The name of the tax. */ taxName?: string | undefined; /** * A description of the tax, providing additional detail about the tax type. */ description?: string | null | undefined; /** * The UUID of last unpaid external payroll. */ lastUnpaidExternalPayrollUuid?: string | null | undefined; /** * Possible tax liabilities selections. */ possibleLiabilities?: Array | undefined; }; /** @internal */ export declare const PossibleLiabilities$inboundSchema: z.ZodType; export declare function possibleLiabilitiesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TaxLiabilitiesSelections$inboundSchema: z.ZodType; export declare function taxLiabilitiesSelectionsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=taxliabilitiesselections.d.ts.map