import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Specify that the package contains Dry Ice (FedEx, Veho, and UPS only). */ export type DryIce = { /** * Mandatory. Specifies that the package contains Dry Ice. */ containsDryIce?: boolean | undefined; /** * Mandatory. Units must be in Kilograms. Cannot be greater than package weight. */ weight?: string | undefined; }; /** @internal */ export declare const DryIce$inboundSchema: z.ZodMiniType; /** @internal */ export type DryIce$Outbound = { contains_dry_ice?: boolean | undefined; weight?: string | undefined; }; /** @internal */ export declare const DryIce$outboundSchema: z.ZodMiniType; export declare function dryIceToJSON(dryIce: DryIce): string; export declare function dryIceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=dryice.d.ts.map