import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Container for specifying the presence of lithium batteries. */ export type DangerousGoodsLithiumBatteries = { /** * Indicates if the shipment contains lithium batteries. */ contains?: boolean | undefined; }; /** @internal */ export declare const DangerousGoodsLithiumBatteries$inboundSchema: z.ZodMiniType; /** @internal */ export type DangerousGoodsLithiumBatteries$Outbound = { contains?: boolean | undefined; }; /** @internal */ export declare const DangerousGoodsLithiumBatteries$outboundSchema: z.ZodMiniType; export declare function dangerousGoodsLithiumBatteriesToJSON(dangerousGoodsLithiumBatteries: DangerousGoodsLithiumBatteries): string; export declare function dangerousGoodsLithiumBatteriesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=dangerousgoodslithiumbatteries.d.ts.map