import * as z from "zod/v4-mini"; export type PurchaseBatchGlobals = { /** * Optional string used to pick a non-default API version to use. See our API version guide. */ shippoApiVersion?: string | undefined; }; export type PurchaseBatchRequest = { /** * Object ID of the batch */ batchId: string; }; /** @internal */ export type PurchaseBatchRequest$Outbound = { BatchId: string; }; /** @internal */ export declare const PurchaseBatchRequest$outboundSchema: z.ZodMiniType; export declare function purchaseBatchRequestToJSON(purchaseBatchRequest: PurchaseBatchRequest): string; //# sourceMappingURL=purchasebatch.d.ts.map