import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Shipment } from "./shipment.js"; export type ShipmentPaginatedList = { next?: string | undefined; previous?: string | undefined; results?: Array | undefined; }; /** @internal */ export declare const ShipmentPaginatedList$inboundSchema: z.ZodMiniType; export declare function shipmentPaginatedListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=shipmentpaginatedlist.d.ts.map