import * as z from "zod/v4-mini";
export type GetShipmentGlobals = {
/**
* Optional string used to pick a non-default API version to use. See our API version guide.
*/
shippoApiVersion?: string | undefined;
};
export type GetShipmentRequest = {
/**
* Object ID of the shipment to update
*/
shipmentId: string;
};
/** @internal */
export type GetShipmentRequest$Outbound = {
ShipmentId: string;
};
/** @internal */
export declare const GetShipmentRequest$outboundSchema: z.ZodMiniType;
export declare function getShipmentRequestToJSON(getShipmentRequest: GetShipmentRequest): string;
//# sourceMappingURL=getshipment.d.ts.map