import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Address = { address?: string | undefined; city?: string | undefined; extendedAddress?: string | undefined; region?: string | undefined; zipCode?: string | undefined; }; /** @internal */ export declare const Address$inboundSchema: z.ZodType
; /** @internal */ export type Address$Outbound = { address?: string | undefined; city?: string | undefined; extendedAddress?: string | undefined; region?: string | undefined; zipCode?: string | undefined; }; /** @internal */ export declare const Address$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Address$ { /** @deprecated use `Address$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Address$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Address$Outbound` instead. */ type Outbound = Address$Outbound; } export declare function addressToJSON(address: Address): string; export declare function addressFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=address.d.ts.map