import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Additional invoiced charges to be shown on the Customs Declaration Commercial Invoice. */ export type CustomsInvoicedCharges = { /** * Currency for the invoiced charges amounts incurred on the end consumer. */ currency: string; /** * Total shipping paid by the buyer. */ totalShipping?: string | undefined; /** * Total taxes paid by the buyer. */ totalTaxes?: string | undefined; /** * Total duties paid by the buyer. */ totalDuties?: string | undefined; /** * Other fees paid by the buyer. */ otherFees?: string | undefined; }; /** @internal */ export declare const CustomsInvoicedCharges$inboundSchema: z.ZodMiniType; export declare function customsInvoicedChargesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customsinvoicedcharges.d.ts.map