import * as z from "zod/v4-mini"; export type GetBatchGlobals = { /** * Optional string used to pick a non-default API version to use. See our API version guide. */ shippoApiVersion?: string | undefined; }; export type GetBatchRequest = { /** * Object ID of the batch */ batchId: string; /** * The page number you want to select */ page?: number | undefined; /** * The number of results to return per page (max 100, default 5) */ results?: number | undefined; }; /** @internal */ export type GetBatchRequest$Outbound = { BatchId: string; page: number; results: number; }; /** @internal */ export declare const GetBatchRequest$outboundSchema: z.ZodMiniType; export declare function getBatchRequestToJSON(getBatchRequest: GetBatchRequest): string; //# sourceMappingURL=getbatch.d.ts.map