import * as z from "zod/v4-mini";
import * as components from "../components/index.js";
export type AddShipmentsToBatchGlobals = {
/**
* Optional string used to pick a non-default API version to use. See our API version guide.
*/
shippoApiVersion?: string | undefined;
};
export type AddShipmentsToBatchRequest = {
/**
* Object ID of the batch
*/
batchId: string;
/**
* Array of shipments to add to the batch
*/
requestBody: Array;
};
/** @internal */
export type AddShipmentsToBatchRequest$Outbound = {
BatchId: string;
RequestBody: Array;
};
/** @internal */
export declare const AddShipmentsToBatchRequest$outboundSchema: z.ZodMiniType;
export declare function addShipmentsToBatchRequestToJSON(addShipmentsToBatchRequest: AddShipmentsToBatchRequest): string;
//# sourceMappingURL=addshipmentstobatch.d.ts.map