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