import * as z from "zod/v4-mini";
export type GetOrderGlobals = {
/**
* Optional string used to pick a non-default API version to use. See our API version guide.
*/
shippoApiVersion?: string | undefined;
};
export type GetOrderRequest = {
/**
* Object ID of the order
*/
orderId: string;
};
/** @internal */
export type GetOrderRequest$Outbound = {
OrderId: string;
};
/** @internal */
export declare const GetOrderRequest$outboundSchema: z.ZodMiniType;
export declare function getOrderRequestToJSON(getOrderRequest: GetOrderRequest): string;
//# sourceMappingURL=getorder.d.ts.map