import * as z from "zod/v4-mini"; export type ListCustomsDeclarationsGlobals = { /** * Optional string used to pick a non-default API version to use. See our API version guide. */ shippoApiVersion?: string | undefined; }; export type ListCustomsDeclarationsRequest = { /** * The page number you want to select */ page?: number | undefined; /** * The number of results to return per page (max 100, default 5) */ results?: number | undefined; }; /** @internal */ export type ListCustomsDeclarationsRequest$Outbound = { page: number; results: number; }; /** @internal */ export declare const ListCustomsDeclarationsRequest$outboundSchema: z.ZodMiniType; export declare function listCustomsDeclarationsRequestToJSON(listCustomsDeclarationsRequest: ListCustomsDeclarationsRequest): string; //# sourceMappingURL=listcustomsdeclarations.d.ts.map