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 biological material. */ export type DangerousGoodsBiologicalMaterial = { /** * Indicates if the shipment contains biological material. */ contains?: boolean | undefined; }; /** @internal */ export declare const DangerousGoodsBiologicalMaterial$inboundSchema: z.ZodMiniType; /** @internal */ export type DangerousGoodsBiologicalMaterial$Outbound = { contains?: boolean | undefined; }; /** @internal */ export declare const DangerousGoodsBiologicalMaterial$outboundSchema: z.ZodMiniType; export declare function dangerousGoodsBiologicalMaterialToJSON(dangerousGoodsBiologicalMaterial: DangerousGoodsBiologicalMaterial): string; export declare function dangerousGoodsBiologicalMaterialFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=dangerousgoodsbiologicalmaterial.d.ts.map