import * as z from "zod/v4-mini"; export type ListShipmentsGlobals = { /** * Optional string used to pick a non-default API version to use. See our API version guide. */ shippoApiVersion?: string | undefined; }; export type ListShipmentsRequest = { /** * The page token for paginated results */ pageToken?: string | undefined; /** * The page number you want to select */ page?: number | undefined; /** * The number of results to return per page (max 100) */ results?: number | undefined; /** * Object(s) created greater than a provided date and time. */ objectCreatedGt?: string | undefined; /** * Object(s) created greater than or equal to a provided date and time. */ objectCreatedGte?: string | undefined; /** * Object(s) created lesser than a provided date and time. */ objectCreatedLt?: string | undefined; /** * Object(s) created lesser than or equal to a provided date and time. */ objectCreatedLte?: string | undefined; }; /** @internal */ export type ListShipmentsRequest$Outbound = { page_token?: string | undefined; page: number; results: number; object_created_gt?: string | undefined; object_created_gte?: string | undefined; object_created_lt?: string | undefined; object_created_lte?: string | undefined; }; /** @internal */ export declare const ListShipmentsRequest$outboundSchema: z.ZodMiniType; export declare function listShipmentsRequestToJSON(listShipmentsRequest: ListShipmentsRequest): string; //# sourceMappingURL=listshipments.d.ts.map