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