import * as z from "zod/v4-mini"; export type GetParcelGlobals = { /** * Optional string used to pick a non-default API version to use. See our API version guide. */ shippoApiVersion?: string | undefined; }; export type GetParcelRequest = { /** * Object ID of the parcel */ parcelId: string; }; /** @internal */ export type GetParcelRequest$Outbound = { ParcelId: string; }; /** @internal */ export declare const GetParcelRequest$outboundSchema: z.ZodMiniType; export declare function getParcelRequestToJSON(getParcelRequest: GetParcelRequest): string; //# sourceMappingURL=getparcel.d.ts.map