import * as z from "zod/v4-mini";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
import { BatchShipment } from "./batchshipment.js";
/**
* Array of BatchShipment objects.
*
* @remarks
* The response keeps the same order as in the request array.
*/
export type BatchShipmentPaginatedList = {
next?: string | undefined;
previous?: string | undefined;
results?: Array | undefined;
};
/** @internal */
export declare const BatchShipmentPaginatedList$inboundSchema: z.ZodMiniType;
export declare function batchShipmentPaginatedListFromJSON(jsonString: string): SafeParseResult;
//# sourceMappingURL=batchshipmentpaginatedlist.d.ts.map