import * as z from "zod/v4-mini";
export type GetCustomsDeclarationGlobals = {
/**
* Optional string used to pick a non-default API version to use. See our API version guide.
*/
shippoApiVersion?: string | undefined;
};
export type GetCustomsDeclarationRequest = {
/**
* Object ID of the customs declaration
*/
customsDeclarationId: string;
/**
* The page number you want to select
*/
page?: number | undefined;
};
/** @internal */
export type GetCustomsDeclarationRequest$Outbound = {
CustomsDeclarationId: string;
page: number;
};
/** @internal */
export declare const GetCustomsDeclarationRequest$outboundSchema: z.ZodMiniType;
export declare function getCustomsDeclarationRequestToJSON(getCustomsDeclarationRequest: GetCustomsDeclarationRequest): string;
//# sourceMappingURL=getcustomsdeclaration.d.ts.map