import * as z from "zod/v4-mini";
export type GetAddressGlobals = {
/**
* Optional string used to pick a non-default API version to use. See our API version guide.
*/
shippoApiVersion?: string | undefined;
};
export type GetAddressRequest = {
/**
* Object ID of the address
*/
addressId: string;
};
/** @internal */
export type GetAddressRequest$Outbound = {
AddressId: string;
};
/** @internal */
export declare const GetAddressRequest$outboundSchema: z.ZodMiniType;
export declare function getAddressRequestToJSON(getAddressRequest: GetAddressRequest): string;
//# sourceMappingURL=getaddress.d.ts.map