import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AddressUpdate = { addressLine1?: string | undefined; addressLine2?: string | undefined; city?: string | undefined; stateOrProvince?: string | undefined; postalCode?: string | undefined; country?: string | undefined; }; /** @internal */ export declare const AddressUpdate$inboundSchema: z.ZodType; /** @internal */ export type AddressUpdate$Outbound = { addressLine1?: string | undefined; addressLine2?: string | undefined; city?: string | undefined; stateOrProvince?: string | undefined; postalCode?: string | undefined; country?: string | undefined; }; /** @internal */ export declare const AddressUpdate$outboundSchema: z.ZodType; export declare function addressUpdateToJSON(addressUpdate: AddressUpdate): string; export declare function addressUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=addressupdate.d.ts.map