import * as z from "zod/v4-mini"; export type TracksRequest = { /** * Name of the carrier of the shipment to track. */ carrier: string; /** * A string of up to 100 characters that can be filled with any additional information you want to attach to the object. */ metadata?: string | undefined; /** * Tracking number to track. */ trackingNumber: string; }; /** @internal */ export type TracksRequest$Outbound = { carrier: string; metadata?: string | undefined; tracking_number: string; }; /** @internal */ export declare const TracksRequest$outboundSchema: z.ZodMiniType; export declare function tracksRequestToJSON(tracksRequest: TracksRequest): string; //# sourceMappingURL=tracksrequest.d.ts.map